Python OOP Tutorial 2: Class Variables

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ก.ค. 2024
  • In this Python Object-Oriented Tutorial, we will be learning about class variables. We will see how they differ from instance variables and also some ideas for exactly how we would want to use them. Let's get started.
    Python OOP 1 - Classes and Instances - • Python OOP Tutorial 1:...
    Python OOP 2 - Class Variables - • Python OOP Tutorial 2:...
    Python OOP 3 - Classmethods and Staticmethods - • Python OOP Tutorial 3:...
    Python OOP 4 - Inheritance - • Python OOP Tutorial 4:...
    Python OOP 5 - Special (Magic/Dunder) Methods - • Python OOP Tutorial 5:...
    Python OOP 6 - Property Decorators - • Python OOP Tutorial 6:...
    The code from this video can be found at:
    github.com/CoreyMSchafer/code...
    ✅ Support My Channel Through Patreon:
    / coreyms
    ✅ Become a Channel Member:
    / @coreyms
    ✅ One-Time Contribution Through PayPal:
    goo.gl/649HFY
    ✅ Cryptocurrency Donations:
    Bitcoin Wallet - 3MPH8oY2EAgbLVy7RBMinwcBntggi7qeG3
    Ethereum Wallet - 0x151649418616068fB46C3598083817101d3bCD33
    Litecoin Wallet - MPvEBY5fxGkmPQgocfJbxP6EmTo5UUXMot
    ✅ Corey's Public Amazon Wishlist
    a.co/inIyro1
    ✅ Equipment I Use and Books I Recommend:
    www.amazon.com/shop/coreyschafer
    ▶️ You Can Find Me On:
    My Website - coreyms.com/
    My Second Channel - / coreymschafer
    Facebook - / coreymschafer
    Twitter - / coreymschafer
    Instagram - / coreymschafer
    #Python

ความคิดเห็น • 1.5K

  • @mtvcity2
    @mtvcity2 7 ปีที่แล้ว +2904

    Your videos are more informative than my university lectures

    • @coreyms
      @coreyms  7 ปีที่แล้ว +264

      Thanks a lot! That's a nice compliment. I'm glad to hear you find them useful.

    • @silverzero9524
      @silverzero9524 6 ปีที่แล้ว +51

      and short and arent booooooring

    • @MrZhunio
      @MrZhunio 6 ปีที่แล้ว +55

      This is so true. We obtain more information on those really short videos than we do in those long lectures on universities.

    • @adityaverma6120
      @adityaverma6120 6 ปีที่แล้ว +33

      True Story of every university

    • @nicklesmatsch7588
      @nicklesmatsch7588 6 ปีที่แล้ว +24

      Well, kind of. In your videos we learn basically all the useful stuff we want to know, but in university we get all the side-information (sorry, no native speaker) we may find useful someday, even though we don't know yet, when it could happen.

  • @trevorduncan7913
    @trevorduncan7913 7 ปีที่แล้ว +911

    it really makes a difference who teaches you.....it was wtf wtf wtf....then watch these videos...oh ya that's logical. you are an awesome teacher....please keep the videos coming.

    • @charlesbovalis6591
      @charlesbovalis6591 5 ปีที่แล้ว +5

      Indeed - a "GOOD" teacher is PRICELESS !!!!!!

    • @ismailmatrix1
      @ismailmatrix1 3 ปีที่แล้ว +7

      I noticed he uses a lot of printing to explain things. That's why it seems logical. When in doubt, just print it out!

    • @selehadinhabesi3855
      @selehadinhabesi3855 3 ปีที่แล้ว +1

      well said, a teacher can kill or instill in you a love for a subject

  • @HaroonAshrafAwan
    @HaroonAshrafAwan 6 ปีที่แล้ว +313

    I enrolled into a top seller's python course on Udemy, read from some of the famous websites but I didn't find someone who teaches like you.You are, hands down, the best teacher anyone can have.

    • @husainmansuri9544
      @husainmansuri9544 5 ปีที่แล้ว +4

      which course did you bought from udemu=y,can i know

    • @michaelakingbade1036
      @michaelakingbade1036 3 ปีที่แล้ว +2

      i made the same mistake

    • @SS-lk7fs
      @SS-lk7fs 2 ปีที่แล้ว

      me too

    • @ayeshavlogsfun
      @ayeshavlogsfun 2 ปีที่แล้ว

      Which Course did you buy .?

    • @jaysphere7519
      @jaysphere7519 2 ปีที่แล้ว +1

      @@ayeshavlogsfun I bought all. All of them below par compared to this.

  • @charlesdeleau3086
    @charlesdeleau3086 4 ปีที่แล้ว +83

    This is so good that I'm starting to doubt whether all his 'mistakes' are secretly ways to make us learn faster :P

  • @wonderoverload0
    @wonderoverload0 4 ปีที่แล้ว +31

    Who needs a Udemy course when you have Corey on TH-cam.
    Thanks buddy for making internet useful for us.

  • @engee_346
    @engee_346 4 ปีที่แล้ว +61

    The sleepless hours that I spent trying understand the nomenclature and the functions that he just made clear in 11 minutes... if you had an advanced professional class that cost money, I would pay for it.

  • @roro4787
    @roro4787 3 ปีที่แล้ว +92

    I finally understand the difference between teaching and throwing information. Love your explanation Corey!

  • @user-xc5xf8gp8n
    @user-xc5xf8gp8n 4 ปีที่แล้ว +791

    Summary:
    In this video, Corey taught as how to differentiate between a Class variable and instance variable, how they are related to each, other, and when each of them is more useful over the other.
    Class variables are variables that we set inside a class, and are shared among all instances. Corey gave a good example where the number of total employs should be the same to every employ, no matter which employee we are referring to. Therefore,
    emp_1.num_of_employ = emp_2.num_of_employ = Employee.num_of_employ
    Instance variables are variables that are different from each instance. For example, the names and the pay for each employee. They have to be different.
    Corey also shows that class variables and instance variables are closely related, and that class variables are kind of 'inherited' to the 'self' variables. To illustrate this, Corey shows an example of 'annual raise of pay'. He initially creates the class variable to show a case where annual raise is equal among all the employees. This variable of 1.04 was accessible through each instance, and also through the class itself(obiviously). That is,
    print(Employee.annual_raise)
    print(emp_1.annual_raise)
    print(emp_2.anual_rais)
    all printed out 1.04.
    However, using the .__dict___ thing, Corey shows that the intances, emp_1 and emp_2 does not contain the annual_raise value. Corey explains that if a variable is not found within an instance and programmers try to access the variable, python automatically looks in in the variable of the instance's class, and then the more classes that the instance's class inherits from.
    Furthermore, if we access the class variable through an instance and then change it, python creates the variable within the instance. We can check it by using the .__dict__ thing. Corey shows that annual_raise key was created when he manually changed the annual_raise value as 1.05 in the following way.
    emp_1.annual_raise = 1.05
    however, we know that the class variable remained the same at 1.04, when printing the class variable.
    print(Employee.annual_raise)
    ==> 1.04

    • @marflage
      @marflage 4 ปีที่แล้ว +49

      Thank you so much. I wanted to revise everything he said but did not want to watch the entire video again. Your comment helped me with just.

    • @amansinghal2431
      @amansinghal2431 4 ปีที่แล้ว +18

      in the second para you said that class variables are shared among all instances but I dont think thats the case. Corey said pyhton first searches the variables in the instance but if it doesnt find it, it goes to the class of the instance and returns it from their. if you dont explicitly mention emp1.raise_amount = 1.05, emp1 instance doesnt have the raise_amount vriables. Please confirm

    • @infinitedeathloop5517
      @infinitedeathloop5517 4 ปีที่แล้ว +10

      @@amansinghal2431 I think he means, when the raise_amount variable isn't found in the instances, python searches for the instance in the class and applies it to both the instances, thus making them share the same variable. I hope I was clear

    • @nishantthakur5357
      @nishantthakur5357 4 ปีที่แล้ว

      Thankx a lot mate

    • @aniruddhkhare2080
      @aniruddhkhare2080 4 ปีที่แล้ว +9

      @@amansinghal2431 The fact that class variables are shared among instances is correct. When class variables are used in methods using class names (as in Employee.raise_amount), then python directly accesses the class namespace, which is common for every instance. But when self is used (as in self.raise_amount), then python first searches the object's namespace, and if not found, then the class namespace. That's why Corey states that using self allows to assign different class variable values to different objects, as reassigning them (such as self.raise_amount = 1.05), makes the value a part of the object's namespace which is queried first.

  • @nikolahuang1919
    @nikolahuang1919 7 ปีที่แล้ว +232

    This series is the best Python series I've ever watched. Your explanation is so clear and you just teach the right amount of useful knowledge we need.

  • @takuz7879
    @takuz7879 ปีที่แล้ว +54

    6 years later, and your videos are still helping us students. I'm in highschool and I'm literally studying for my exam through these. When I pass it'll all be because of you. THANK YOU COREY!

    • @eliasvor
      @eliasvor ปีที่แล้ว +3

      did you pass?

    • @takuz7879
      @takuz7879 ปีที่แล้ว +12

      @@eliasvor yeah 🙌

  • @derricknjoroge2494
    @derricknjoroge2494 6 ปีที่แล้ว +85

    You have the best python OOP tutorials. Thank you, you are helping alot of people especially aspiring developers from
    Africa. Cheers

    • @coreyms
      @coreyms  6 ปีที่แล้ว +5

      That's great to hear! Glad you found it helpful!

    • @jeremyokuto9856
      @jeremyokuto9856 3 ปีที่แล้ว

      Actually from the same country bro

  • @peti826
    @peti826 4 ปีที่แล้ว +17

    I know there loads of comments appreciating your work already, but man.. . I started learning python about 1,5 months ago and I have never learnt about OOP, not even its concept and the difference related to other types (still dunno them properly), yet I fully understood everything you said in both of your videos so far... Hats off dude.

  • @sunnybeta_
    @sunnybeta_ 7 ปีที่แล้ว +558

    you helped me get an internship. :*

    • @coreyms
      @coreyms  7 ปีที่แล้ว +97

      Congratulations!

    • @Asterite
      @Asterite 5 ปีที่แล้ว +12

      @@robbyz512 for experience and understanding , thats simple even tho i wasnt in any internship :p you are basically learning how to work in that level

    • @Asterite
      @Asterite 5 ปีที่แล้ว +3

      @@robbyz512 i think you are paid man not like alot but still

    • @Asterite
      @Asterite 5 ปีที่แล้ว

      @Berke Icel oh still also a good way for experience :3

    • @nomadfox9290
      @nomadfox9290 5 ปีที่แล้ว +16

      @Berke Icel That's not entirely true (not being payed for internships). I actually was paid for an internship I did before I was hired on after it was over. I know for a fact the big companies like Facebook, Microsoft, Google, Twitter, etc. pay interns via an educational stipend.

  • @Bartnick81
    @Bartnick81 7 ปีที่แล้ว +125

    Quality tutorial! You got my patreon backing.

  • @thuggfrogg
    @thuggfrogg 4 ปีที่แล้ว +5

    These videos are insanely good... Definitely not for a 100% noob but absolutely amazing for somebody who's hacked around and now needs a technical understanding to get to the next level. Thanks, Corey!

  • @nomoreospf
    @nomoreospf ปีที่แล้ว +2

    Best Python OOP lessons for beginners!

  • @ravenjs
    @ravenjs 5 ปีที่แล้ว +16

    I'm so so so glad that I found Corey on TH-cam. His teachings are state of the art! Whenever there's something I'm confused about python, he is the first person that comes in mind. I'm so very grateful to have you as a teacher, you rock at it! Keep it up! Can't wait for more!

    • @coreyms
      @coreyms  5 ปีที่แล้ว

      Thanks! Glad to have you

  • @jaxwylde2139
    @jaxwylde2139 4 ปีที่แล้ว +9

    Wow! Learned more about classes and class variables, in the last 10 minutes, than on a full day going through online python CBT. Can't wait to watch the rest of this series.

  • @taofeekajibade
    @taofeekajibade 2 ปีที่แล้ว +3

    So, 5 years ago, this amazing video was made and I'm just seeing it in 2022!
    What a classic teaching it is!
    Thank you for the supremely brilliant delivery 👍

  • @hectorserrano9314
    @hectorserrano9314 ปีที่แล้ว +9

    Showing the namespace was so clever to help us thoroughly understand it. Thank you so very much!

  • @willylukwago6051
    @willylukwago6051 5 ปีที่แล้ว +4

    I don't know why you don't have more subscribers by now, or maybe there aren't many coders out there. But I was afraid of starting learning Python until I stumbled onto this Chanel. Now I can code as a charm.

  • @rsmrostov
    @rsmrostov 5 ปีที่แล้ว +8

    I read a ton of explanation for class attributes and instance attributes, but you explain it so clearly. Great job!

  • @vaclavvlcek4527
    @vaclavvlcek4527 5 ปีที่แล้ว +3

    Hi, I need to say your videos are really clear, comprehensive, enough detailed but not boring and too long on the other hand. I just sent you some small donate right now as appreciation. I wish I discovered your channel sooner. Thank you for all your effort!

  • @mrchatterjee_
    @mrchatterjee_ 5 ปีที่แล้ว +8

    After working in the industry for 5 years, learned this concept today, just because of the way you made it. I am moving towards into a more coding technology and your videos are gold! Amazing!

    • @shiggigigi
      @shiggigigi 3 ปีที่แล้ว +1

      Really? 5 years of tech support scams, and yet you don't know any basics of OOP. Now that's some top tier career dreams

  • @Tazumm
    @Tazumm 5 ปีที่แล้ว +3

    I've seen several sites, books, and videos that all used the Employee class as an example for OOP, however this is the only one that actually made sense and helped me understand the concepts. Thanks!

  • @Soljarag5
    @Soljarag5 5 ปีที่แล้ว +5

    hands down the best OOP tutorial series... I've been using python for 2 years, but have been intimidated by Classes.... this has helped a ton!!!!!

  • @MrAverageViewer
    @MrAverageViewer 4 ปีที่แล้ว +2

    Corey, your videos are EXEMPLARY :) Your approach to teaching, and examples you use (e.g. Employees), have finally unlocked the hard-to-understand concepts into easier-to-understand analogies. Thank you for posting these videos!

  • @falconspy1668
    @falconspy1668 4 ปีที่แล้ว +2

    The best python OOP tutorial on TH-cam. Thank you sir

  • @chenlily9444
    @chenlily9444 6 ปีที่แล้ว +17

    As a beginner, I was stuck with learning Python Class and so lucky to find these videos via Google search! Very informative and easy to understand. BTW, the teacher in these videos also has a nice voice ☺

  • @anamariabalaban
    @anamariabalaban 2 ปีที่แล้ว +4

    It's great that there are people with pedagogical grace, but it's really wonderful when they share their knowledge with beginners. Please don't stop what you're doing ❤

  • @sudarsandm
    @sudarsandm 2 ปีที่แล้ว

    Going through your videos we feel like we have covered the most. What we can gain by going through multiple books you walk us through it in one video. Thank you Corey from the bottom of my heart.

  • @SourabhDesaiBrief
    @SourabhDesaiBrief 3 ปีที่แล้ว +1

    What I love about these lecture, that Errors are explained, which is more intuitive.
    Thanks Corey :)

  • @noamanrasul
    @noamanrasul 4 ปีที่แล้ว +5

    Oh My God. I was struggling with OOP concepts. Corey made it so simple. Corey keep on doing what you doing my good friend. Thank you.

  • @colinsmith5972
    @colinsmith5972 7 ปีที่แล้ว +22

    Corey your explanation of "Class" is just that...... CLASS. Perfect explanation!!! Total Respect.

  • @madmowgli1055
    @madmowgli1055 5 ปีที่แล้ว +3

    Absolutely freaking awesome. Hands down, you're providing me an A+ headstart for my bachelor course in economy informatics. Huge thumbs up for spreading absolutely logic and understandable explanations. You're amazing. Thanks.

  • @vuyokazimatomela6776
    @vuyokazimatomela6776 6 ปีที่แล้ว +2

    This is the best Video ever to explain classes, i have been very lost for a month trying to get this concept and you explained it in less than an hour thank you soo much. I am going to nail my computer science paper tomorrow

  • @hashtaggamer1850
    @hashtaggamer1850 5 ปีที่แล้ว +2

    Your pretty much the only thing and/or person who explains any of this clearly

  • @humayunkabir7925
    @humayunkabir7925 4 ปีที่แล้ว +5

    I was thinking i am very good in OOP since got i A+(4.0) in the course both in Theory & Lab, somehow i came to the playlist & saw pretty amazing comments, so i got interest to see what's inside. i was thinking myself a pro in OOP. But the way you teach things here are amazing.

  • @anand29091987
    @anand29091987 3 ปีที่แล้ว +1

    This is just pure gold. That's how any teacher should be , who makes their student eager to learn more in most simplistic way. Great work Corey.

  • @alessanderboy
    @alessanderboy 4 ปีที่แล้ว +21

    Hello Corey, I'd like to thank you for all the courses on Python you've made. They're way better than udemy courses and any others. You're doing a great job, captain!

  • @charlesbovalis6591
    @charlesbovalis6591 5 ปีที่แล้ว +7

    I have NOTHING BUT PRAISES for your style, clarity, and to the point explanation of VERY IMPORTANT concepts .... I cannot thank you enough Corey .. I will gladly contribute to your classes and start filling all the "gaps" of knowledge I need to .. You have a devoted student now :)

  • @nadik4531
    @nadik4531 4 ปีที่แล้ว +7

    Lol your explanations are better than all my professors. How did I not find this channel years ago smh

  • @kareemjeiroudi1964
    @kareemjeiroudi1964 4 ปีที่แล้ว +1

    What I loved about these tutorials is that he tried to cover those tricky questions such as instance namespace and class namespace ever for people that are already familiar with these concepts. Keep making videos. Your content is great!

  • @joeymatthews4112
    @joeymatthews4112 3 ปีที่แล้ว

    You are so thorough! I agree with others that you are a natural teacher. The pace, tone, comprehensiveness, and genuine enthusiasm are all spot-on. You are an asset! Thank you!

  • @unknown_f2794
    @unknown_f2794 5 ปีที่แล้ว +4

    I get more explanations from your videos than what I have got from all of my courses, great work!!!!!!

  • @carljason4299
    @carljason4299 4 ปีที่แล้ว +3

    On the 2nd of Feb 2020 ,this video had a 99.64% like - dislike ratio. That's insane. It stands as a testimony to the insanely great work Corey's been doing. Thank you!

  • @divutiful
    @divutiful 3 ปีที่แล้ว

    Posted 4 years back but still, I did not find any other tutorial as clear as these classes one. I have just started learning python and I really appreciate you making these videos. You are an awesome teacher.

  • @pratikkawalgikar4839
    @pratikkawalgikar4839 4 ปีที่แล้ว +1

    Your videos should be at top in the youtube search for "python". I'm recommending your channel to all my friends interested in Python. Thanks Corey. You are a great teacher.

  • @hmhamam_ham
    @hmhamam_ham 7 ปีที่แล้ว +3

    Thanks for making a concise and understandable lesson on 'self'. I had one semester on python and my professor could never really make it make sense and you managed to explain it is like 20 minutes. Heck yeah!

  • @aaronmackley3472
    @aaronmackley3472 5 ปีที่แล้ว +3

    I've been watching several python training videos. Corey explains things more simply and more completely than anything I have watched so far. Good work.

    • @coreyms
      @coreyms  5 ปีที่แล้ว

      Thanks! Glad it helped!

  • @casurajkar7814
    @casurajkar7814 5 ปีที่แล้ว +1

    Being from a non-technical background, I was struggling to understand the OOP. But now the concept is clear to me. Thank You..

  • @josefh8782
    @josefh8782 4 ปีที่แล้ว +1

    Probably the best videos Ive been able to find for beginner Python. So articulate and logical in the way you teach, it's awesome. Thanks.

  • @VishalMishra-hz4fy
    @VishalMishra-hz4fy 5 ปีที่แล้ว +3

    This is the most logical approach to class and objects, i am really glad i found you Sir! Thankyou for such a beautiful explanation. You solved every doubt!

  • @IonBeamXXIV
    @IonBeamXXIV 5 ปีที่แล้ว +4

    Thank you so much for this series, these videos are fantastic, I feel like every possible pitfall or misunderstanding one could have you articulately and expertly explain.

  • @gauravluitel1344
    @gauravluitel1344 4 ปีที่แล้ว +1

    i am a beginner to python, on searching many videos in youtube i found your bunch of videos. so nice and so easy to learn, very interactive and you have pointed out every small and basic things. thank you so much.

  • @TahmidulAzomSany
    @TahmidulAzomSany 3 ปีที่แล้ว +1

    You start with messing up the things, then collaborate them and make a great sense. Awesome.

  • @gavravdhongadi9824
    @gavravdhongadi9824 4 ปีที่แล้ว +5

    You are literally giving me hope, appreciate it

  • @simonclaeys1414
    @simonclaeys1414 5 ปีที่แล้ว +3

    This is so much better than my lectures and book, thank you so much!

  • @RobinIsBetterThanYou
    @RobinIsBetterThanYou 5 ปีที่แล้ว +2

    Just want to say thank you for these videos. I took the wrong path in my education before realising that programming was my true passion. Unfortunately its really difficult to self-teach something like this because of the sheer wealth of information avaliable online.
    Your videos cover almost everything I've wanted to learn so far, and not only that you don't just 'show' you actually teach. Every time i find myself asking a question about something you've just said, you immediately address why it and explain why it may be confusing. Thank you so much for putting in the time to do this and make it free, you are really making a difference to peoples lives.

  • @alexanderskae5720
    @alexanderskae5720 2 ปีที่แล้ว

    I have been searching for good tutorials on Python for years, and this series is by far is the most informative. Thank you!

  • @matfen7978
    @matfen7978 5 ปีที่แล้ว +3

    Everything is so well placed and informative, thank you!

  • @cairink2110
    @cairink2110 5 ปีที่แล้ว +6

    your videos are much better compared to many online courses and free too

  • @hasanaslan2688
    @hasanaslan2688 4 ปีที่แล้ว +2

    Everything you explained is clear and logical. Thank you

  • @davidmiricho385
    @davidmiricho385 4 ปีที่แล้ว +2

    The best Python tutorials I have come across. Your explanation is just awesome. Keep up the good work.

  • @Abbekej
    @Abbekej 4 ปีที่แล้ว +4

    You are next level, man. Respect!

  • @datasciencehelp2030
    @datasciencehelp2030 4 ปีที่แล้ว +3

    1 hour of my Grad class summed up in 11 minutes. Thank you!

  • @dragonz369
    @dragonz369 2 ปีที่แล้ว +2

    As a CS person myself, I’ve seen numerous tutorial videos. Yours is the most logical, right to the point, and easy to understand. 👍 Hope you’ll create more contents.

  • @phamvantho4981
    @phamvantho4981 4 ปีที่แล้ว

    Don't know how to express how grateful I am to have all these materials. Thank you a lot Corey.

  • @starplatinumrqm
    @starplatinumrqm ปีที่แล้ว +4

    can't express how nice and easy to understand these videos are

  • @mohamedkhodary7831
    @mohamedkhodary7831 5 ปีที่แล้ว +6

    Finding your channel is like finding a Gold mine Corey , keep up the Gold work ; - )

  • @harshinivbhat7817
    @harshinivbhat7817 ปีที่แล้ว +2

    These are the best videos ever . I struggled to make sense of these concepts before . Now its all so damn logical and intresrting. A Million tonnes of gratitude to u !

  • @ericorabello
    @ericorabello 5 ปีที่แล้ว +2

    The best explanation on Python Classes on YT. Congrats, man

  • @elmastermaestr
    @elmastermaestr 7 ปีที่แล้ว +31

    Tank you for covering all of this. I'm truly becoming better in Python because of this

  • @stevenshelby2675
    @stevenshelby2675 4 ปีที่แล้ว +10

    This is the type of youtuber whom I would gladly watch 10 straight ads on their video

  • @ahnadiri
    @ahnadiri 3 ปีที่แล้ว

    Absolutely masterful. I rarely even need to rewind, that's how well you explain it. It's like magic.

  • @entropyz5242
    @entropyz5242 5 ปีที่แล้ว +1

    You helped me finally understand object oriented programming in just one video after hours of surfing the web without any result.

  • @iuliapintrijal8041
    @iuliapintrijal8041 5 ปีที่แล้ว +2

    Best TH-cam channel there is! Bravo!

  • @danielismyhandle
    @danielismyhandle 6 ปีที่แล้ว +3

    Dude, these tutorials are mindblowing.. I've gone through a few OOP classes and never really understood the concept so i can write my own things with it, after watching tutorial 1 and 2 i now have a very good understanding how to rewrite a whole script i got. Thanks, i never sub but this deserves a sub.

    • @coreyms
      @coreyms  6 ปีที่แล้ว

      Glad it helped!

  • @CLacroix
    @CLacroix 4 ปีที่แล้ว +1

    You are amazing man!!! so simple, so clean and straight forward. Every minute brings a new information

  • @albertlu9448
    @albertlu9448 3 วันที่ผ่านมา

    I always had difficulties understanding Python class well, until I found this video that makes it so intuitive.

  • @Aseem_Bhandari
    @Aseem_Bhandari 7 ปีที่แล้ว +2

    After purchasing a few tutorial classes going through the online material this is where i got the bestsellers explanation. #Thanks Corey Schafer #Respect

  • @JAAKAP
    @JAAKAP 7 ปีที่แล้ว +3

    BEST PYTHON OOP EXPLANATIONS I HAVE SEEN.
    I HAVE BOUGHT MANY ONLINE COURSES BY THEY ARE SUCKS COMPARING TO YOU.

  • @abhiseksahu4455
    @abhiseksahu4455 2 ปีที่แล้ว

    Bow down to the maestro...the way you teach is still the best after 5 years of this video...I have been to lots of tutorials for python but always missing the concept...you made it like a butter in the frying pan...it just slips through your mind and I feel satisfied after learning from your videos.... please don't stop your videos...the world needs teacher like you ... #respect

  • @hateterrorists
    @hateterrorists 5 ปีที่แล้ว +1

    As somebody who used C# for years, and is now picking up some python. Thank you for clearing up some of what I saw as weirdness with the way python does things. Its all clear now and simple.

  • @aditimore3967
    @aditimore3967 5 ปีที่แล้ว +4

    You might have no idea how helpful this was to us.

  • @rafaelgalvan4087
    @rafaelgalvan4087 5 ปีที่แล้ว +3

    Every video is so clear thanks bro!

  • @lucdrouin2625
    @lucdrouin2625 5 ปีที่แล้ว +1

    Thank You Corey. You have compartmentalized key issues with easily understood practical examples. I like the logical progression of your examples.

  • @sudarsandm
    @sudarsandm 5 ปีที่แล้ว +2

    Love these videos and your style of explaining complex concepts using simple examples. Thanks for your effort Corey.

  • @thenode_
    @thenode_ 4 ปีที่แล้ว +3

    Corey, to repeat the sentiment here, you really helped drive home what Object Oriented Programming almost instantly. You should have your own Coursera courses.

  • @Finn-jp6pn
    @Finn-jp6pn 5 ปีที่แล้ว +13

    You, sentdex, Traversy Media are the teachers we all need in Uni but don't have. The day I get a job, I'll definitely support you. Thank you for sharing your knowledge.

  • @catalinleca6730
    @catalinleca6730 6 ปีที่แล้ว +1

    Dude, you're amainzg! You're tutorials are one of the best tutorials i've ever watched! Good work!

  • @Di0n-0
    @Di0n-0 4 ปีที่แล้ว +2

    This is so .... good I am so lucky to stumble up on this. I bought a udemy course and it got me nowhere in 6 hours . I just watched 24-30 minutes of this and I totally get it now . Thank you so much you are an amazing guy

  • @sudarsandm
    @sudarsandm 5 ปีที่แล้ว +2

    Awesome explanation.

  • @jeangtr
    @jeangtr 5 ปีที่แล้ว +2

    You, my friend. You are a life saver. Keep up the excellent work! Lives being changed because of you :D

  • @xolanigumbi8951
    @xolanigumbi8951 5 ปีที่แล้ว +1

    To me classes have been the hardest part of Python to learn - but from what I've watched so far, I think I kind of get the idea. Thank You!

  • @owenmurray3748
    @owenmurray3748 5 ปีที่แล้ว +2

    The Object-Oriented series is excellent, thanks Corey! Just wrote my first successful class in python.

  • @SagnikDuttaegor92
    @SagnikDuttaegor92 4 ปีที่แล้ว +4

    Who gives dislikes for gems like these??? For now I only have love and respect for you Corey, Patreon to follow soon :)

  • @juderadford5645
    @juderadford5645 4 ปีที่แล้ว +4

    I've been using Sololearn, but this is more straightforward and easy to understand. Thanks!

    • @kwiatriot6190
      @kwiatriot6190 4 ปีที่แล้ว

      I am using Sololearn as well and Corey is way better at the OPP stuff!

  • @Rum8146
    @Rum8146 3 ปีที่แล้ว

    Mind blown..!!! 20+ years ago I was working with Macromedia (Macromind) Director and as a visual designer without coding knowledge or experience I struggled to master Lingo. Over time I ended up at the level of an OOP Lingo coder, albeit one relying heavily on copied code segments and fiercely treasure code examples that I'd gotten to work. FF 20 years and I've returned to coding in the form of Python.
    SUDDENLY with your videos a window has opened on the murky interior I previously inhabited. I now understand the concepts that you are talking about rather than piecing together code samples. ALL of your videos that I have worked through have been enlightening, fun and edifying. Thank you so much for giving all of this.

  • @MrKatdar
    @MrKatdar 5 ปีที่แล้ว +1

    Corey, you must be the best instructor in this universe. I love watching your videos. Thank you