In Python, Everything is an Object (even Variables and Functions) #21

Поділитися
Вставка
  • Опубліковано 15 гру 2024

КОМЕНТАРІ • 41

  • @programizstudios
    @programizstudios  2 роки тому +1

    🔥 Learn Python with a more hands-on experience with Programiz PRO-interactive lessons, quizzes & challenges.
    Try Programiz PRO: bit.ly/right-python

  • @rithvikbodapati843
    @rithvikbodapati843 4 роки тому +17

    I literally watched his whole series in about 2 days, what an amazing channel..

  • @tanvipandit6899
    @tanvipandit6899 4 роки тому +12

    Learning python with you is the time I enjoy the most! You make it very interesting. Please it would be great if you also make vids on c++

  • @OpenDeepLearning
    @OpenDeepLearning 2 роки тому

    I really hope you succeed man, the amount of work put into this is insane. Thank you! Wish you the best! Cheers from Romania!

  • @Mish-333
    @Mish-333 2 роки тому

    Such a great channel! Simply great teaching techniques used!!🙌✨

  • @peterchin6759
    @peterchin6759 3 роки тому

    Finally I have found the right video!!!!!!!!!!!! and I can't wait to watch the other videos of yours.

  • @gouravpandey3513
    @gouravpandey3513 3 роки тому

    Amazing.......... Practical way of learning... Is good

  • @shikharsaxena9989
    @shikharsaxena9989 3 роки тому +1

    Amazing playlist

  • @jacksonhue381
    @jacksonhue381 3 роки тому

    Clear and concise. Amazing

  • @kartikudainiya2328
    @kartikudainiya2328 4 роки тому +2

    I want to learn about how to make bar graphs, use colour for different bar graphs, bar width and pie chart and other related please make a video on it

  • @sandipansarkar9211
    @sandipansarkar9211 3 роки тому +1

    great explanation

  • @BenjaminGSlade
    @BenjaminGSlade 2 роки тому

    Good tutorial, but you should explain what it means to have a class attribute with leading & trailing double underscores (attributes which are intended to be called by Python itself when doing standard operations on the object, I think)

  • @tademrechalshiny5523
    @tademrechalshiny5523 2 роки тому

    You literally make life easy ,tq

  • @EmereEmmanuel
    @EmereEmmanuel 2 місяці тому

    my answer
    class Triangle():
    def __init__(self, a, b, c):
    self.a = a
    self.b = b
    self.c = c
    def perimeter(self):
    return self.a + self.b + self.c
    T1 = Triangle(2,3,4)
    perimeter = T1.perimeter()
    print(perimeter)

  • @fndpires
    @fndpires 2 роки тому

    You guys are AWESOME! Keep the great work.

  • @ayushidhamane9681
    @ayushidhamane9681 4 роки тому

    You make learning python so easy.Can you please also make videos on c++

  • @רונןפרץ-ס7ר
    @רונןפרץ-ס7ר 3 роки тому

    I have a game about quizzes how do u suggest keep the answers to each question I need help!

  • @sayanjitb
    @sayanjitb 3 роки тому +1

    When I run this code-> list.__dir__(), output was showing->> TypeError: descriptor '__dir__' of 'object' object needs an argument. What does it mean technically?

    • @surya691
      @surya691 2 роки тому

      dir(), says about all possible functions a variable can be accessed upon.
      Use , list=[ ]
      print ( dir(list))

  • @nagendrasai1230
    @nagendrasai1230 2 роки тому

    For example a=10
    both a and 10 are objects???

  • @binaykumar1616
    @binaykumar1616 4 роки тому

    You teaches well. Great.

  • @jayakrishnans2785
    @jayakrishnans2785 3 роки тому

    You got 1 more subscriber..❤️

  • @Rainbow-r2x
    @Rainbow-r2x 4 місяці тому

    These days programiz website isn't working we are unable to access the tutorials 😢

  • @davidfernandes980
    @davidfernandes980 2 роки тому

    please create in depth python course.

  • @shubhamguha445
    @shubhamguha445 3 роки тому +1

    Your videos are so damn ez to understand .....absolutely amazing...

  • @whitedevilk3041
    @whitedevilk3041 3 роки тому

    amazing channel

  • @surajmallick8132
    @surajmallick8132 3 роки тому

    Are Numeric Types are Objects too ?? can you plz clear this and if they are Objects can we use methods like we use in strings like "Suraj".uppercase()

    • @leen8175
      @leen8175 2 роки тому

      i think yes , for both Qs

  • @yuvrajagarkar8942
    @yuvrajagarkar8942 3 роки тому

    so that means python docent have primitive data types ??

  • @davidventura5769
    @davidventura5769 3 роки тому

    Very helpful - with clear examples. Thank you.

  • @creativecodz
    @creativecodz 3 роки тому

    hi sir please make videos on real time games using python for beginners

  • @kituli1438
    @kituli1438 3 роки тому

    thanks

  • @gotetilakshman6770
    @gotetilakshman6770 3 роки тому

    Plz do video on HTML course and python Django plz do it sir

  • @parkour.11parkour58
    @parkour.11parkour58 3 роки тому

    I did not find the video useful, instead I found it as a life saver.

  • @ssaranya7805
    @ssaranya7805 4 роки тому +1

    I know python program then what I do

  • @lovemadeinjapan
    @lovemadeinjapan 2 роки тому

    Python is the German of programming languages. hatte.es.gemacht.werden.gekonnt()
    You can make such a shitty mess. car.motor(left,10) bicycle.motor(right,10). motor.bicyle.turn.left(80)
    You can't see what's a function and what is an object. Insert some foo and bar and you can go straight to an asylum....

  • @johnjohnes698
    @johnjohnes698 Рік тому

    nope, this is #bullshit
    why on earth do you show in your explanation that 'a' is just a label to an INTEGER but then in your example you use a LIST? these are different types, and what works with LIST, SETS and DICTIONARIES won't work with INTS, STRINGS, TUPLES, BYTES, FLOATS!!! you are confusing people!