Object Oriented Programming with Python - Full Course for Beginners

  Рет қаралды 1,700,042

freeCodeCamp.org

freeCodeCamp.org

Күн бұрын

Object Oriented Programming is an important concept in software development. In this complete tutorial, you will learn all about OOP and how to implement it using Python.
💻 Code: github.com/jimdevops19/PythonOOP
🔗 Tutorial referenced for a deeper explanation about __repr__: • Python Magic Methods |...
✏️ Course developed by Jim from JimShapedCoding. Check out his channel: / @jimshapedcoding
⭐️ Course Contents ⭐️
⌨️ (0:00:00) Getting Started with Classes
⌨️ (0:12:11) Constructor, _init_
⌨️ (0:50:35) Class vs Static Methods
⌨️ (1:13:22) Inheritance
⌨️ (1:30:14) Getters and Setters
⌨️ (1:51:00) OOP Principles
🎉 Thanks to our Champion and Sponsor supporters:
👾 Wong Voon jinq
👾 hexploitation
👾 Katia Moran
👾 BlckPhantom
👾 Nick Raker
👾 Otis Morgan
👾 DeezMaster
👾 AppWrite
--
Learn to code for free and get a developer job: www.freecodecamp.org
Read hundreds of articles on programming: freecodecamp.org/news

Пікірлер: 1 100
@jimshapedcoding
@jimshapedcoding 2 жыл бұрын
Thanks a lot for posting this, FCC! ❤️
@mahirrahman4253
@mahirrahman4253 2 жыл бұрын
You are an amazing teacher, thankyou for teaching me flask your market app really helped me 🙏🏻
@flammabletfm3405
@flammabletfm3405 2 жыл бұрын
You are the amazing one.Thanks for the great course.
@thetagang6854
@thetagang6854 2 жыл бұрын
No, thank YOU!
@jimshapedcoding
@jimshapedcoding 2 жыл бұрын
@@mahirrahman4253 Thanks a lot!
@jimshapedcoding
@jimshapedcoding 2 жыл бұрын
@@flammabletfm3405 You are welcome!!
@hhbadarin
@hhbadarin 2 жыл бұрын
Only today and after watching this tutorial I understand "self" in python!
@nkundukozerajanvier162
@nkundukozerajanvier162 2 жыл бұрын
the same here
@vuyilemagwaza3236
@vuyilemagwaza3236 2 жыл бұрын
He makes so easy to understand
@kapilrakh
@kapilrakh 2 жыл бұрын
you are a "self" learner
@leovaldez6280
@leovaldez6280 2 жыл бұрын
I just think of it as this
@simonmuthungu4061
@simonmuthungu4061 Жыл бұрын
Am also looking to understand self... Hope I do
@DennisChaves
@DennisChaves 2 жыл бұрын
I'm only 20 minutes in and already several concepts that were blurry before are now crystal clear to me. Excellent video!
@hgm8337
@hgm8337 2 жыл бұрын
plus the benefit of being taught by Count Dracula's nephew
@joseluizdurigon8893
@joseluizdurigon8893 Жыл бұрын
@@hgm8337 noooo way hahahahahahahaha
@k.o.o.p.a.
@k.o.o.p.a. Жыл бұрын
@@hgm8337 😭😭
@cjhoffmn
@cjhoffmn Жыл бұрын
No joke - he's explained things in the first 20 mins that I've never heard anywhere else - yet they are true fundamentals that are really helpful to learn!
@shyamsundarraghu4667
@shyamsundarraghu4667 4 ай бұрын
00:04 Understanding object oriented programming is important for software developers. 07:57 Creating a method to calculate the total price of items 23:21 Understanding constructors and best practices in classes 31:11 Learned about constructor and working with different attributes 45:44 Using a for loop, we can print the names of all instances 53:38 Read CSV file and instantiate objects with class method. 1:09:32 Create a separate class named 'Phone' that inherits from the 'Item' class 1:17:02 Inheritance allows creating child classes that inherit attributes and methods from parent classes. 1:31:54 Create read-only attributes in Python using the property decorator 1:39:20 By adding double underscores to attribute names, access to those attributes is prevented outside of the class. 1:54:40 Encapsulation and abstraction principles are applied in object-oriented programming. 2:03:06 Inheritance allows code reuse across classes
@itishasan
@itishasan Жыл бұрын
For those who didn't understand the static method, def is_integer(num) = Our Function & num.is_integer = Built-in Function. is_integer() is a popular built-in function that checks if a floating number is actually an integer. As an example, 7.0.is_integer() will return True whereas 7.3.is_integer() will return False. So as to avoid confusion, let's just change Our Function name to def check_integer(num) 🙂✌
@cerealnotfound
@cerealnotfound Жыл бұрын
Thank you sir!!
@tg8799
@tg8799 Жыл бұрын
I was scratching my head over this so much... all logic was flying out of my brain! Thank God for a helpful community! Thank you!
@tg8799
@tg8799 Жыл бұрын
This comment needs to get pinned or something for newcomers
@midhunskani
@midhunskani Жыл бұрын
Yup u cant name a function with a built in function name
@Omar-jn8xk
@Omar-jn8xk Жыл бұрын
Thx
@muntaface
@muntaface 2 жыл бұрын
This guy is amazing. He has taught me Selenium, Classes and I'm sure many more things in the future. Keep up the good work Jim, you're a beast!
@ducdao1679
@ducdao1679 2 жыл бұрын
I've been learning and coding Python for a little over a year and have never fully understood the __init__ method until I saw this video. You rock!
@FreihEitner
@FreihEitner Жыл бұрын
I'm only up to the 45 minute point so far, but already I am very grateful for this tutorial. Thank you so much!
@littlescientist3697
@littlescientist3697 8 ай бұрын
this fucking boosted me to the next level
@calfolkionized
@calfolkionized 2 жыл бұрын
I find myself especially loving the structure of this OOP tutorial, it comes from a Funtional programming aspect and gradually lead you into OOP with examples, as oppose to other tutorials where they directly introduce you to concepts like inheritence/settters etc.. This makes my understanding of OOP much more clearer and structred. Big thanks to FCC and the lecturer!
@pointer333
@pointer333 Жыл бұрын
More better than my comment!
@SuperTenja
@SuperTenja 2 жыл бұрын
Just completed the whole video and this is hands down the best object oriented programming course I've ever come across. I've been trying to understand what exactly OOP is all these days by reading blogs and going through different tutorials. Nothing gave me as much clarity as this video did. Thanks a lot for the great work and for giving this out for free!
@johnhrabovsky2118
@johnhrabovsky2118 2 жыл бұрын
Sir, thank you for this absolutely fantastic run through of object oriented programming. I was struggling with some of these concepts in using python to build a Django website, but this tutorial cleared up a TON of information. Very well done, I along with 100K+ others, are incredibly grateful that you took the time to put this together to clear up some confusing concepts.
@KofyImages
@KofyImages Жыл бұрын
Less than 10 minutes into the tutorial and I understand what the class is. Some of these free tutorials teach better than actual courses we pay money for
@xelvince
@xelvince Жыл бұрын
Best explanation on OOP on KZbin. He doesn't skip anything. It finally makes sense 😊
@hammadhassankhan
@hammadhassankhan Жыл бұрын
Loved It! I have been in a 4-Year CS program and learned the OOP concepts in different lectures. Probably this one is the best among all the lectures/tutorials I have taken for OOP till now.
@electricalautomationengine9128
@electricalautomationengine9128 2 жыл бұрын
Wow, he wasn't lying . He really explains it well; you wouldn't need another tutorial .
@aminnourmohammadi5025
@aminnourmohammadi5025 Жыл бұрын
This tutorial was hands-down the best I've ever watched regarding the essential concepts of object-oriented programming. You clarified so many of my unanswered questions. Thanks a million!
@elijahkalii5290
@elijahkalii5290 2 жыл бұрын
This is the most comprehensive and friendly tutorial on Python OOP I have seen so far. Thanks for this Jim
@fesehaabebe-akele2684
@fesehaabebe-akele2684 2 жыл бұрын
Very practical and understandable take on OOP in python. Greatly recommended to people with a beginner level knowledge of python and need to add OOP to their python tool kit.
@sancrosanct5070
@sancrosanct5070 2 жыл бұрын
1. In the run validations to arguments part, if you aren't getting an error when you use an integer as the name, type in assert type(name) == str. This will not accept anything other than an integer as the name. 2. Make sure you have no spaces between the list in the items.CSV file. Its a minor thing but gave me a headache since I couldn't get past that for a while. Then do the normal int(item.get()) then it works fine. Finally most of the issues I encountered were as a result of not looking at the code long enough. If you encounter a problem, make sure to re watch the part where he DOS it and make sure you got it correct. This happened to me at the Len part and a few others. Finally if you encounter s problem not stated here, then copy the error and paste it in your browser. This shows a stackoverflow page first where you can figure out what's wrong. Hope this helps you and you don't have to go through the headache I did when solving those lol
@alexjokyn5116
@alexjokyn5116 2 жыл бұрын
you are a legend
@yashnirmal3895
@yashnirmal3895 2 жыл бұрын
yeahhhh was facing the same headache...thank u very much!!!!
@oanr2475
@oanr2475 2 жыл бұрын
true saviour
@zorodielirido
@zorodielirido 2 жыл бұрын
#2 gave me such a headache as well. i think i would still be sitting here trying to figure it out if i didn't see your comment. thanks!
@IurijZagorulko
@IurijZagorulko 2 жыл бұрын
Man thx a lot!!!
@federicopalacio5349
@federicopalacio5349 2 жыл бұрын
It's really really useful for begginers like me to have a tutorial builded from the scratch, instead of just downloading code from an external source and all of a sudden try to understand whats happening on those 50 lines of code. Thx
@DaniloSilva-pl3sq
@DaniloSilva-pl3sq 2 жыл бұрын
Nice profile picture!
@michaeldimattia9015
@michaeldimattia9015 2 жыл бұрын
Thank you for such a clear and detailed tutorial! This helped deepen my understanding of these concepts. Absolutely worth watching!
@akhilkumar4825
@akhilkumar4825 2 жыл бұрын
Best intro to OOP so far. Explained so well. Thank you so much for this excellent course!!
@arunny9430
@arunny9430 2 жыл бұрын
Absolutely fantastic. Definitely, the best introduction to Python OOP I have seen so far.
@mohanprajapati2051
@mohanprajapati2051 2 жыл бұрын
Simply perfect ! Though I was doing revision but it helped me in learning the concepts easily.
@we1rdalien
@we1rdalien Жыл бұрын
Great course! This took me from having a basic knowledge of OOP to understanding the logic of how it all works much more! Excited to keep going deeper with these topics!
@alperklc7782
@alperklc7782 2 жыл бұрын
1:08 "is_integer" is a float method, since the name of the written method and the float method name are the same, there is a misunderstanding as if the method is calling itself again. It was a confusing example. It took me a long time to understand and figure out what was going on. 7.0.is_integer() return True :)
@adviced8071
@adviced8071 2 жыл бұрын
same
@warrobotslovers3277
@warrobotslovers3277 2 жыл бұрын
Thank you very much . I was mulling over this doubt for a long time.
@karolinesilva4669
@karolinesilva4669 Жыл бұрын
Thanks for this comment alper! I assumed it wasn't recursion but was scanning the comments for this confirmation.
@user-dp2yi2oy8g
@user-dp2yi2oy8g Жыл бұрын
Thanks, was wondering the same
@llucbusquets6266
@llucbusquets6266 Жыл бұрын
Damn, thank you so much. I was really wondering how a recursive function could work in this case and I was looking for people equally confused in the comments. It turns out it's easier than that :D
@rutdvajrawal7933
@rutdvajrawal7933 2 жыл бұрын
20 mins in and so many concepts are made clear and so quickly and efficiently. Thanks the instructor and FCC.
@deadangelair
@deadangelair 2 жыл бұрын
The practical way of explaining and the gradual pull into the concept was awesome. I am finally understanding. Thank you so much
@motilevi3597
@motilevi3597 2 жыл бұрын
A very enjoyable comprehensive lecture, the study material is delivered in a clear and adequate manner
@pointer333
@pointer333 Жыл бұрын
I have to admit that when I heard the presenter's thick accent, I was worried, but I've just finished the entire video, and I must say that this was an EXCELLENT presentation. Turns out dude is very easy to understand. Speaks clearly, slowly, concisely, and precisely. Doesn't just superficially intro you to each topic--he really takes the time to explain the principles. A+! THANK YOU for taking the time to create and share this with the world! This was basically my into to object oriented programming and I really do feel like I've learned a whole lot after this 2+hr video!
@jimshapedcoding
@jimshapedcoding Жыл бұрын
I appreciate such a comment a lot. Working on a smooth accent has been something I am working on a lot and I am happy you found your way to complete the entire video! Keep going :)
@MrIanEntertainment
@MrIanEntertainment Жыл бұрын
@@jimshapedcoding I think your accent makes the video nicer to listen to
@lionelcarmont9574
@lionelcarmont9574 2 жыл бұрын
Thank you very much, For the last month I was wandering on the internet to understand OOP, with no success now it is crystal clear. Une fois encore, merci
@rotrose7531
@rotrose7531 2 жыл бұрын
By far the best OOP python I ever found, clear, easy to understand, ensure that everything is crystal clear.
@8SecSleeper
@8SecSleeper 2 жыл бұрын
That's because you didn't look hard enough. It's terrible compared to others.
@foray3573
@foray3573 2 жыл бұрын
@@8SecSleeper then suggest a better one for learners to watch better ones.
@mgm8075
@mgm8075 2 жыл бұрын
@@8SecSleeper still havent suggested better?
@8SecSleeper
@8SecSleeper 2 жыл бұрын
@@mgm8075 If you can't find the better videos, then you shouldn't be learning programming. It's not for you.
@mgm8075
@mgm8075 2 жыл бұрын
@@8SecSleeper instead of typing all that out you could've just shared the video you claimed was better. just say you're too lazy.
@KnotaFurry
@KnotaFurry Жыл бұрын
Thank you so much. I've been having such a hard time for hours trying to understanding classes and methods. This was perfect.
@Rey-tp8jm
@Rey-tp8jm 7 ай бұрын
Great explanations! I like that you clarified certain aspects of OOP that are hardly ever mentioned in other OOP courses. Thank you!
@irajesmaeili8032
@irajesmaeili8032 Жыл бұрын
Great course, I liked the order of subjects so everything made sense while learning OOP. Many thanks!
@ajinkyapotkar3439
@ajinkyapotkar3439 2 жыл бұрын
The whole concept of OOP is explained in a structured and easy to understand way. I am a beginner and learnt a lot from this. Looking forward to learn more from your videos . Thankyou
@SPARCHE
@SPARCHE Жыл бұрын
This is, by far, the best tutorial I've watched in a long time. Man have you got didactics for days. Congrats!
@abdolahfrootan2127
@abdolahfrootan2127 2 жыл бұрын
A perfect course if you know the general concepts but they are not clear enough. Electrifying! Good Job
@ass_awper
@ass_awper 2 жыл бұрын
Thank you so much, I was looking forward for such a course
@htaehxela
@htaehxela Жыл бұрын
this made more sense to me than any other OOP tutorial I have ever watched. Thank you so much
@pearlr.2411
@pearlr.2411 Жыл бұрын
finished in one sitting after finishing a similar course on datacamp and I understood everything perfectly. thank you so much man
@eckee
@eckee 6 ай бұрын
This was insanely helpful. Easily understood, clear examples.
@utsavbhardwaj938
@utsavbhardwaj938 2 жыл бұрын
I was trying to learn oop concepts for a very long time and I was having a very hard time learning this then found this video, still in the 1st chapter __init__ and most of the things I was having hard time with got very clear. Thanks for this, I will always remember you. FCC is doing great work finding these high quality videos .
@Anonymous-ri4mk
@Anonymous-ri4mk 13 күн бұрын
Me too everyone else was giving shitty explanation or explanation that just doesnt make sense it seems they have forgotten their target audience are intermediate level or lower and they cant understand it by the general explanation which are given to people who knows how to do oop
@indometalpython4969
@indometalpython4969 2 жыл бұрын
ABSOLUTELY FANTASTIC!!! Thank you so much Jim. I followed this tutorial line by line and learnt so much. I owe you this new beginning of my life.
@BrannenTaylor
@BrannenTaylor 2 жыл бұрын
THANK YOU for making your font size large enough to read on a tablet. So many channels don’t do this.
@alhensouher
@alhensouher Жыл бұрын
For anyone who also installed the csv plugins but the "Table Editor" button didn't appear: you have to go to File | Settings | Editor | File Types, go to "Text", and then add *.csv to that file type. Confirm it and you're good to go. =}
@unpatel1
@unpatel1 2 жыл бұрын
OMG!!! I am finished only 23:30 and this so amazing!! Looks like this video is going to be in my permanent youtube storage vault!:):) I already have decided to watch it more than once. Already cleared up a few critical concepts that I was struggling with. You have an amazing explanation power.
@pointer333
@pointer333 Жыл бұрын
Yes! I've been chipping away at it for 3 days and just finished. SO GLAD I FOUND THIS. I want the channel to know how awesome they are!
@steviegillen82
@steviegillen82 Жыл бұрын
OOP has always been a sticking point for me, but thanks to this in-depth tutorial, it is all starting to make sense. Thank you FCC for posting this!
@mlrk3y858
@mlrk3y858 9 ай бұрын
Thank you so much for this amazing tutorial! I’ve only been learning python for a few weeks but this helped me understand many core principles of OOP. Not going to lie, a little of this was still over my head but I’ve saved this video so I can watch it a few more times of the next few months. Thanks again
@SurajMapariPrivate
@SurajMapariPrivate 2 жыл бұрын
He is great explainer bring him back again on this channel !!! ✨👏🔥💯
@doubando
@doubando 2 жыл бұрын
Amazing OOP training, alot of concepts clear by now for me
@vambylamby83
@vambylamby83 Жыл бұрын
Learned a lot from this course, helped me to understand OOP better. Thank you so much, Jim and FCC.
@Andrey-rc6wp
@Andrey-rc6wp 3 ай бұрын
20 minutes in and the gentleman has clarified all the questions I had regarding OOP. This makes so much sense.
@infographic7907
@infographic7907 2 жыл бұрын
man it's so amazing. You are so good at explaining. Thank you soo much for get me out of the confusions. ❤️🙏🙏
@fadymikhaiel2370
@fadymikhaiel2370 Жыл бұрын
The thing that most tutorials miss is an indepth explanition of the logic of how things work. Fortunately, this tutorial does not skim on explaning the logic and also giving examples of use cases. Thanks Jim!!!
@chandranshpandey1929
@chandranshpandey1929 Жыл бұрын
I think for learning oops its better to reas some basic books
@StrafesHarder
@StrafesHarder Жыл бұрын
@@chandranshpandey1929 read*
@Alexr26
@Alexr26 11 ай бұрын
This is a top notch crash course. Simple and short to start building stuff. Thank you!
@pkavenger9990
@pkavenger9990 2 жыл бұрын
Now i am in this video for 50 minutes and I got to say, this video is golden. This video is like if you want to digest 1000 pages of content in one video. Truly Awesome.
@djholty1234
@djholty1234 Жыл бұрын
Great tutorial. I was a bit confused when you built your staticmethod is_integer at first. But then I realized float has a method built into it also called "is_integer", which will return true if the float ends in .0. Once I figured that out it made sense to me. Hope this helps someone who is confused by the same thing
@ZsoltPal23092011
@ZsoltPal23092011 Жыл бұрын
Thank you, I have scrolled down the comments to see if someone had the same issue with this part - you helped a lot here :)
@user-bi8nd3wn7d
@user-bi8nd3wn7d 11 ай бұрын
I was about to ask the same, thank you! I think it was a bad idea to name the static method 'is_integer' since there already exists a float method with the same name.
@plamenyossifov6135
@plamenyossifov6135 2 жыл бұрын
This is gold. Jim is awesome! For sure in my top 3 best teachers. So easy to understand.
@James24127
@James24127 11 ай бұрын
Thank you for this tutorial. I've participated in a number of courses and by far this is the best object oriented programming course I've seen.
@ddelvaller
@ddelvaller 2 жыл бұрын
Thank you very much Jim, this helped me a lot to understand OOP
@venkilfc
@venkilfc 2 жыл бұрын
What a brilliant course! Thank you :)
@geetikas3286
@geetikas3286 2 жыл бұрын
Theory intensive but very crisply explained! Excellent video!
@hakimled4300
@hakimled4300 2 жыл бұрын
I have already watched and downloaded your videos on my computer. A great course thank you Jim
@innocent006
@innocent006 Жыл бұрын
The explanation on this tutorial is very clear and to a point. I understood lots of things, which was a bit of a magic before this video. Thank you very much and keep posting fruitful videos
@jimshapedcoding
@jimshapedcoding Жыл бұрын
I appreciate this! Thanks
@awosiseoluwaseun5499
@awosiseoluwaseun5499 2 жыл бұрын
The is_integer function name almost confused me. is_integer is a method on its own in python so I thought you were calling your defined function inside the function itself. I'm clear now, made me research more and I'm happy about that. An awesome video by the way, I've mastered OOP basics from this. Thanks so much.
@edhernunio
@edhernunio 2 жыл бұрын
It got me confused as well. Thanks for the clarification 👍
@ivanmendez3786
@ivanmendez3786 2 жыл бұрын
Oh wow. I spent like 15 minutes trying to figure out the code. Thanks! 😅
@StarFury2
@StarFury2 2 жыл бұрын
Jesus, this was super confusing. I guess he could have called his staticmethod like "check_if_is_integer" to make a difference from the inbuilt function. Super awesome video anyways!
@HereToSin
@HereToSin 2 жыл бұрын
@@StarFury2 1:09:00 One thing which you could also observe was that there were no parameters passed when calling the is_integer() {in line 45}, so no way would the is_integer method of the item class would be called, as that would require passing num parameter. But yeah, this was confusing at first glance!
@federicocaballero6493
@federicocaballero6493 2 жыл бұрын
Thanks for this course! It's been really useful as a complement to my Software Engineering studies.
@ali333291
@ali333291 5 ай бұрын
Such a lovely way to explain the OOP. Practical project based examples makes it even more interseting. Thank you
@smburhan6323
@smburhan6323 2 жыл бұрын
This is just the thing i was looking for... Thank you very much ❤
@54peace
@54peace 2 жыл бұрын
God bless this man 🙏
@Blentux
@Blentux Жыл бұрын
I'm now halfway through, but this is an excellent video for learning OOP, always struggled with it, but this one is just great, so thanks a lot!! Learned so much from it. EDIT: I've completed the whole video by now - what a journey, thank you so much for this course!!
@gideonidumah2495
@gideonidumah2495 Жыл бұрын
This guy is very good with explaining and teaching. I really learnt a lot from about OOP that had been confusing to me. Thank you so much
@prabhakar664
@prabhakar664 2 жыл бұрын
Watching at 0.75 X. This is by far the best tutorial on OOP. Hands Down.
@ShubhamMusafir
@ShubhamMusafir 2 жыл бұрын
waiting for this from a long time , thanks :)
@NathanBerhe-gw5wv
@NathanBerhe-gw5wv 2 ай бұрын
watching it now 2 yrs after it was published. Super amazing. Thanks buddy.
@manojkumar-pt5zz
@manojkumar-pt5zz Жыл бұрын
It's an excellent video with a clear-cut explanation for a learner like me. I have watched many videos for understanding these concepts finally this one made me understand them clearly.
@farazahmed1668
@farazahmed1668 2 жыл бұрын
Thank you so much for this extremely useful tutorial.
@user-iq1fg2um5k
@user-iq1fg2um5k 2 жыл бұрын
Я просмотрел все 2 часа этого курса, и научился читать код, и понял общие правила ООП. То что раньше было сложно понять, понимать стало гораздо проще. Вместо повторения \ дублирования кода, можно написать код лаконично, и он будет выглядеть очень аккуратно, это очень круто. Мне жаль что на просторах интернета, на Русском сегменте, вот таких полных курсов очень и очень мало, но найти ваш канал было просто волшебно. За 2 часа, начиная от самого простого, переходя постепенно к пониманию того что происходит, с указанием что откуда наследуется и передается, в общем я очень рад что эта информация очень полезна для меня. Осталось только научиться делать это самостоятельно, и продумывать код и его логику. Жаль у нас не было уроков программирования, да и преподаватели обычно не умеют доносить информацию понятным и простым языком, объясняя сложные вещи простым языком. Благодарю вас.
@jimshapedcoding
@jimshapedcoding 2 жыл бұрын
You are welcome! :) I hope there will be more Russian lecturers in KZbin to help you learn even better!
@vinaylofi3105
@vinaylofi3105 10 ай бұрын
I finally completed these Object oriented of python, i would recommend every body to watch these to have a good grasp of concepts
@kieranoldfield1455
@kieranoldfield1455 Жыл бұрын
I've learned so much from this video, I really feel this has taken me to the next level of my knowledge in Python. Thank you!!
@tasnimmeem1158
@tasnimmeem1158 2 жыл бұрын
Just what I needed ❤️
@thomas_mensen3080
@thomas_mensen3080 2 жыл бұрын
Same
@peachgumdrop8067
@peachgumdrop8067 7 ай бұрын
The best OOP video ive ever seen. I would have failed without you LMAOO my profs could never compare.
@IRFAN39175
@IRFAN39175 2 жыл бұрын
Great course for someone that used Python in a procedural manner and wanted to shift to a OOP approach.
@centralcodingethiopia
@centralcodingethiopia Жыл бұрын
I was Struggling to understand the concept of Class through tutorials, but this tutorial helped me to really understand well. Thanks a lot!
@zainulabdin4466
@zainulabdin4466 2 жыл бұрын
1:08:52 The name "is_integer" was a bit confusing because same method exists for 'float' class so in first IF statement num.is_integer() has nothing to do with the is_integer function that has been created in this code. That is_integer() method is pre-defined for the float class and that is only there to check if the num is a float or not and returns TRUE.
@jimbowayoutub2
@jimbowayoutub2 Жыл бұрын
Yes. Exactly. Great tutorial but this was a flub in presentation. Thanks for clarifying.
@akhilmachaan5010
@akhilmachaan5010 Жыл бұрын
@@jimbowayoutub2 Can you please explain this, 01:07:07 if isinstance(num, float): #Count out the floats that are point zero return num.is_integer() what happens when we return num.is_integer()
@jimbowayoutub2
@jimbowayoutub2 Жыл бұрын
@@akhilmachaan5010 Hi. The instructor added a static class to his Item class called is_integer() that returns True if num's type is integer and false if it's a float by using the isinstance() method built into python. But that alone would still interpret a number like 5.0 as a float just because it has a decimal. He wants his method to return True in such cases. Now because num is float he can call the is_integer() method that is *built into python's float class* ( same name but different function) One is created by Jim. The other built into Python's float class. Hope that helps.
@danieloluwarotimi48
@danieloluwarotimi48 Жыл бұрын
Hey, For anyone here who might be struggling with a 'NoneType' error when trying to call ur CVS file and convert it into a list, go back and make sure there are no spaces in between attribute names. Remove all extra needed spaces example: should be: name,price,quantity not: name, price, quantity
@EmilianoGalati
@EmilianoGalati Жыл бұрын
You saved my day!
@erosmitdelta
@erosmitdelta Жыл бұрын
YOU'RE A GOD!
@tywatkins
@tywatkins 6 ай бұрын
🤩
@aman4434
@aman4434 2 жыл бұрын
Very good course, great material. Maybe not exactly for absolute beginners, but great for someone coming from another language!
@mvvlpradeep
@mvvlpradeep 2 жыл бұрын
Very helpful, clear to understand.. loved it, and worth spending time listening
@gauravmahajan3035
@gauravmahajan3035 2 жыл бұрын
Thanks!
@SurajMapariPrivate
@SurajMapariPrivate 2 жыл бұрын
Learned so much from single video thanks alot 👏✨💯🔥🔥
@barecodedreamersacademy6147
@barecodedreamersacademy6147 2 жыл бұрын
kzbin.info/door/yoFQsVztx2oHWq14nY8A6A
@jimalix6270
@jimalix6270 Ай бұрын
Awesome video! I'm half-way into it, and I've already learned more than I learned in an entire OOP class on another platform! Thanks so much!
@pawel040408
@pawel040408 2 жыл бұрын
Really good introduction to OPP in Python! Short, but fairly complete and covering lots of concepts!
@kevinmiller2210
@kevinmiller2210 11 ай бұрын
you down with opp? Yeah you know me!
@devanshjain5145
@devanshjain5145 2 жыл бұрын
I think naming that is_integer(num) method was wrong because already there exists an inbuilt method called is_integer() that can be called upon floats.... All this while I was thinking of recursion....
@-steady-8215
@-steady-8215 2 жыл бұрын
Haha. Yeah. Took some time to get it cleared for me.
@rogue8275
@rogue8275 2 жыл бұрын
I didn't understood what happened there ... To me it seems to be an infinite loop
@sweetie_py
@sweetie_py 2 жыл бұрын
I'm fluent at OOP in Java and now I feel stuck when doing it in Python lol
@stevenho9963
@stevenho9963 Ай бұрын
i am a self taught programmer and previously ive tried to learn linked list and got totally lost and confused. i was told i should learn OOP first. my friend had a syllabus for a OOP class, but i didnt want to spend threee months on it so i went onto this video and i learned so much. took about 3-4 days digesting information. you broke down the steps in a way thats easy to digest and remember. although this topic has a lot of information, now i see all i need is to practice these concepts often and ill get it. you have explained in two hours a whole entire syllabus that would take aquarter, which is about 3 months. thank you so much
@jimshapedcoding
@jimshapedcoding 17 күн бұрын
I really appreciate this one, thank you and I am very happy I saved your time :)
@anvesh12
@anvesh12 Жыл бұрын
Being familiar with OOPs concepts already i came here just to brush thing up! Luckily i learnt lot of new things. You just nailed it JIM. Thanks ! Keep teaching!
@cristiandinu2906
@cristiandinu2906 2 жыл бұрын
Hi, Thanks for posting !!! , there is a catch at least in unix ( !!! items.csv file has spaces in front of columns price, quantity which triggers an error : price=int(item.get('price')), TypeError: int() argument must be a string or a number, not 'NoneType')
@opeo5418
@opeo5418 2 жыл бұрын
Having this same error with the NoneType as well
@hkoranteng1
@hkoranteng1 2 жыл бұрын
same, but i removed the spaces from my csv file and the error went away. although now, i'm not able to see the objects in the console though. when i run the code Item.instantiate_from_csv(). it's blank after the ...python.exe ...tutorial.py. still trying to figure it out ... so not actually sure if the items in the csv are being created as objects in my program
@hkoranteng1
@hkoranteng1 2 жыл бұрын
when i run print(type(item.instantiate_from_csv())) it returns --->>> that doesn't sound right! has anyone faced a similar issue? better still, have any ideas?
@mohamedasif5871
@mohamedasif5871 2 жыл бұрын
@@hkoranteng1 It is because we are not returning anything in the instantiate_from_csv method. You should try printing Item.all to know if the ob jects has been instantiated.
@walky4158
@walky4158 2 жыл бұрын
@@hkoranteng1 Thank you mate. I was confused where I was being wrong, and I read your comment about spaces. Fixed the error and I can now proceed with the tutorial. Thanks.
@Simon_Alexnder
@Simon_Alexnder 2 жыл бұрын
Shalom!
@michaelwerkov3438
@michaelwerkov3438 2 жыл бұрын
nice! im excited to get some time and work through some of this
@durgeshkshirsagar116
@durgeshkshirsagar116 Жыл бұрын
What an excellent tutorial! Amazing man. You are a wonderful teacher. Hats off to you. God bless you!
Python Django Web Framework - Full Course for Beginners
3:45:41
freeCodeCamp.org
Рет қаралды 4,1 МЛН
Object Oriented Programming (OOP) in C++ Course
1:30:26
freeCodeCamp.org
Рет қаралды 2,4 МЛН
ISSEI funny story 😂😂😂Strange World 🌏 Green
00:27
ISSEI / いっせい
Рет қаралды 87 МЛН
Não pode Comprar Tudo 5
00:29
DUDU e CAROL
Рет қаралды 75 МЛН
Python Object Oriented Programming (OOP) - For Beginners
53:06
Tech With Tim
Рет қаралды 3,2 МЛН
Data Analysis with Python for Excel Users - Full Course
3:57:46
freeCodeCamp.org
Рет қаралды 2 МЛН
Learn JavaScript - Full Course for Beginners
3:26:43
freeCodeCamp.org
Рет қаралды 16 МЛН
Machine Learning for Everybody - Full Course
3:53:53
freeCodeCamp.org
Рет қаралды 4,9 МЛН
Python Object Oriented Programming in 10 minutes 🐍
10:04
Bro Code
Рет қаралды 318 М.
Intro to Java Programming - Course for Absolute Beginners
3:48:25
freeCodeCamp.org
Рет қаралды 2,8 МЛН
How to Get a Developer Job - Even in This Economy [Full Course]
3:59:46
freeCodeCamp.org
Рет қаралды 1,5 МЛН
Python As Fast as Possible - Learn Python in ~75 Minutes
1:19:41
Tech With Tim
Рет қаралды 1,7 МЛН
Automate with Python - Full Course for Beginners
2:42:55
freeCodeCamp.org
Рет қаралды 1,4 МЛН