Learn the basics of POOP in 10 minutes! #----------------------------------------------------------------- from Car import Car car_1 = Car("Chevy","Corvette",2021,"blue") car_2 = Car("Ford","Mustang",2022,"red") car_1.drive() car_2.stop() #----------------------------------------------------------------- class Car: def __init__(self,make,model,year,color): self.make = make self.model = model self.year = year self.color = color def drive(self): print("This "+self.model+" is driving") def stop(self): print("This "+self.model+" is stopped") #-----------------------------------------------------------------
I have watched so many videos about OOP but every video was headache for me because those were so confusing but this is one of the best video about OOP, Thank You so much :)
I'm 71 year-old, very retired as I write this comment. I cut my teeth on procedural languages (e.g., Assembly Language, Cobol, Fortran, PL/1, and a couple dozen database management products on micro, mid-tier, and mainframe platforms. Object-oriented programming back then was mostly "conceptual" (with the significant exception of SmallTalk). I plunged into AI and expert system programming with Prolog (and a bit of Lisp) which had some similar concepts and language constructs. I found this video most helpful in helping me better understand the "object dot" item, but I'm not in Kansas anymore. I had decades of programming where writing tight and complete code was the objective; Python code development doesn't seem to focus on the finer details that separated the average programmers from the revered technicians. I'm sure I'll change my tune as I actually begin developing the applications that I have in mind. Thank you for the helpful introductory video. I'll keep an eye out for your other TH-cam ventures into the land of Python.
If you’re new to OOP, start with this video. It summarises what you need to know in 10 minutes and makes sense. I’ve seen a few others and they’re confusing so don’t bother. Start with this!
Easily the most understandable and user friendly video out there. Easy to comprehend examples and a short and sweet video that makes sure to touch all bases. Good job!
You only spend a second on it, but the fact that you explained the (self) concept clearly is why your video is better than all the others I've watched so far.
Man you are a real gem, I've searching a lot of tutorials and getting 2-3 hours long ones I just need the basic as I already knew JAVA and CPP, I found your video. It was superb and right to the point.
Usually short vids don't have a lot of the information but you like blown my mind when you explained it BROOOO! Plus you made me want to create one! Thanks for teaching this, def a sub!
Excellent video. Concise and fast. Perfect for reviewing this topic (after so many years without coding) and probably for someone that wants to see how easy it is to make a POOP =)
We are literally 9 minutes and 59 seconds away from realising the part in the original Matrix film where neo closed his eyes and shook for 5 seconds and said "i know kung fu" 😂 i shook for 10mins but i still got to learn object orientated programming 😂 your the best bro. Salute to you.
Finally someone who’s not copying from Mosh. I appreciate the originality Bro Code. I must say, using cars as an example instead of pets was very helpful to me, and I can actually understand and hear much better from a video without an accident 👍🏽
Hey! I just found your channel and subscribed, love what you're doing! Particularly, I like how clear and detailed your explanations are as well as the depth of knowledge you have surrounding the topic! Since I run a tech education channel as well, I love to see fellow Content Creators sharing, educating, and inspiring a large global audience. I wish you the best of luck on your TH-cam Journey and can't wait to watch your next upload. Cheers, happy holidays, and keep up the great work :)
Crazy. My Python course is in swedish and I'm swedish. I've had trouble grasping everything until I saw this 10 min video in english describing it. I guess growing up with the internet being primarily in english (late -90s early 2000) left its mark. Thank you Bro Code!
I'm currently trying to get through my cs class and my professor is good, but your videos were able to clear up a bunch of questions I had about creating classes. Thank you for the video!
I have been trying to get my brain around Classes for a little while now. This is the easiest explanation that I have found so far. Thank you very much.
Why people do not make life easier for other people? I watched your video and simply I understood the idea within 10 minutes. Next … Thank you very much bro 🌹🙏 I will not forget you in my pray.
A lot of videos about python topics stretch into the hour-long mark and are a headache to get through. Been struggling the last couple of days to get a handle on OOP in Python, but this video gave me a real foundational understanding of it which should help me learn a ton.
Thank you! Awesome video! This is actually my 2nd or 3rd time watching it. The first couple times i really wasnt ready to process te information. Now, after some time stiudying the basics I'm able to get a much better grasp. Let my mistake be a lesson to us all. Take your time and start from the beginning! God bless y'all
you are a very good teacher , i see people that are not able to pick a example for an object. I hope that your channel cover more serious and complex stuff that well too. thanx for the effort
this was the first time I felt like I need to watch another tutorial as well to fully understand BroCode tutorial, then I watched this one again and understood it fully. BTW, you are great Bro😍
Great video, great instructor, great examples! I struggled with the "self" keyword in the methods, but this helped @ 8:00 with how you explained it bluntly (self is referenced to car1). Thank you for that.
Seeing the acronym POOP I already know this will be good shi* hahaha But seriously, I've watched other explanations here on youtube and they seem to always assume that I already know words like object, attributes, method, and all that stuff while at the same time putting "for beginners" in their title. Even if they explain it, they will just say the definition and the sample code and I'm still confused. But you just solved all my confusions from other videos in like a couple of seconds by telling me the examples around you and just like that I already know what it means. You really are a bro, bro. ❤
Bro, thank you so much for this video. I've just begum my programming proccess and I always find myself comming back to this video while working on my personal projects. Thak you so SO much
Thank you, Bro Code. Your video is the best video I've seen about Object-Oriented Programming (OOP) in Python. Your explanation made everything clear and helped me understand all the concepts I had in mind.
I'd rather you took twice as long and explained something slowly than try to do what most other people do which is try to explain as succinctly as possible. Brevity doesn't always help learning ! So thank you for your slow simple steps! 😊❤
Learn the basics of POOP in 10 minutes!
#-----------------------------------------------------------------
from Car import Car
car_1 = Car("Chevy","Corvette",2021,"blue")
car_2 = Car("Ford","Mustang",2022,"red")
car_1.drive()
car_2.stop()
#-----------------------------------------------------------------
class Car:
def __init__(self,make,model,year,color):
self.make = make
self.model = model
self.year = year
self.color = color
def drive(self):
print("This "+self.model+" is driving")
def stop(self):
print("This "+self.model+" is stopped")
#-----------------------------------------------------------------
"POOP"
The French acronym is literally "POO" 💩
Hi bro
if python object oriented programming had a color it would be brown XD
Thank you bro❤❤❤❤❤
I have watched so many videos about OOP but every video was headache for me because those were so confusing but this is one of the best video about OOP, Thank You so much :)
Bro I taught I was the only one who taught that lol XD. He explained it so easily in 10 mins compared to tech with tim in 75 mins.
i felt the same
Same, I tried learning Java maybe 20yr ago as a kid, couldn’t do it, OOP was too abstract
SAME. This fits perfect for my assignment that im struggling on. So helpful
@@popupanimations1857 tech with tim sucks!
I'm 71 year-old, very retired as I write this comment. I cut my teeth on procedural languages (e.g., Assembly Language, Cobol, Fortran, PL/1, and a couple dozen database management products on micro, mid-tier, and mainframe platforms. Object-oriented programming back then was mostly "conceptual" (with the significant exception of SmallTalk). I plunged into AI and expert system programming with Prolog (and a bit of Lisp) which had some similar concepts and language constructs. I found this video most helpful in helping me better understand the "object dot" item, but I'm not in Kansas anymore. I had decades of programming where writing tight and complete code was the objective; Python code development doesn't seem to focus on the finer details that separated the average programmers from the revered technicians. I'm sure I'll change my tune as I actually begin developing the applications that I have in mind. Thank you for the helpful introductory video. I'll keep an eye out for your other TH-cam ventures into the land of Python.
Wow
Oh 71 years old ❤️ good to know
If you’re new to OOP, start with this video. It summarises what you need to know in 10 minutes and makes sense. I’ve seen a few others and they’re confusing so don’t bother. Start with this!
Easily the most understandable and user friendly video out there. Easy to comprehend examples and a short and sweet video that makes sure to touch all bases. Good job!
Taught me more in 10 minutes than my professor has in two months
ong
Yup, same same. Congrats for the video @bro
😂
My prof tried to teach me python for almost 2 years now and this bro taught me more in 10 mins
our prof taught it in half a day and we are expected to write a test tmrw I understood shit cooked fr
Very easy to understand lecture on OOP. Agree this is the best video on OOP I have watched on TH-cam
You only spend a second on it, but the fact that you explained the (self) concept clearly is why your video is better than all the others I've watched so far.
Man you are a real gem, I've searching a lot of tutorials and getting 2-3 hours long ones I just need the basic as I already knew JAVA and CPP, I found your video. It was superb and right to the point.
Unbelievably straight forward, surely gonna be watching your other videos soon. Thanks for the great work!
You simplified this perfectly. No BS explanation and I am here for it, after spending too much time learning this through over complicated means.
nah, bro, its crazy how a 10 minute vid can teach more than 3 hours at my uni. amazing video dude!
never understood the self method cause i didnt get anyone explain it that good as you did, straight to the point for dummies, best teacher
I was avoiding this topic like the plague! But, thanks to this video, I finally understand how POOP works. Thanks, Bro!
Usually short vids don't have a lot of the information but you like blown my mind when you explained it BROOOO!
Plus you made me want to create one! Thanks for teaching this, def a sub!
Finally someone who can explain it to normal people. Thank you👍🏾
the problem is that everyone tries to explain it like you are an idiot that can't understand abstract concepts, so they overcomplicate it.
@@gymnodinium9 ikr
I can't tell you how much I've stressed over my project for class, only to stop by here and have that eureka moment.
Thank you so much.
Excellent video. Concise and fast. Perfect for reviewing this topic (after so many years without coding) and probably for someone that wants to see how easy it is to make a POOP =)
This dude explained OOP better than chatGPT💀
I got more understanding about OOP from this than any OOP material I've come across in the last two years. Thanks.
As someone who knew what OOP was but forgot bits and pieces about it, this video was great for relearning and revising OOP
This was such an easy way to understand as some who just started coding a few days ago. Thank you!
We are literally 9 minutes and 59 seconds away from realising the part in the original Matrix film where neo closed his eyes and shook for 5 seconds and said "i know kung fu" 😂 i shook for 10mins but i still got to learn object orientated programming 😂 your the best bro. Salute to you.
YOU KILLED IT!! GREAT STEP BY STEP BREAK DOWN.... THANK YOU
I'm new to programming and your videos are helping out in ways a book can't really do. THANKS!!!!!!!!!!!!!!!!!
Finally someone who’s not copying from Mosh. I appreciate the originality Bro Code. I must say, using cars as an example instead of pets was very helpful to me, and I can actually understand and hear much better from a video without an accident 👍🏽
This is one of the best tutorials on oop I've seen. Everything is clear and makes sense. Liked and subscribed.
You're great, you made me code again in a difficult moment. I will follow your videos from now on!
SIR! after 4 years of coding. I came across this video just to see how much info can fit in 10 minutes, and OMG this is a masterpiece!
I started with your java course in this channel and... You still giving me the answers when I dont get something working. Magic
Hey! I just found your channel and subscribed, love what you're doing! Particularly, I like how clear and detailed your explanations are as well as the depth of knowledge you have surrounding the topic! Since I run a tech education channel as well, I love to see fellow Content Creators sharing, educating, and inspiring a large global audience. I wish you the best of luck on your TH-cam Journey and can't wait to watch your next upload. Cheers, happy holidays, and keep up the great work :)
Crazy. My Python course is in swedish and I'm swedish. I've had trouble grasping everything until I saw this 10 min video in english describing it. I guess growing up with the internet being primarily in english (late -90s early 2000) left its mark. Thank you Bro Code!
great explanation man. the simplicity of which you explain it has given me some confidence to go and implement it myself!
Brillant, Concise, Comprehensive, Simplified
Thats the exact definition of this video.
Thank you so much!
bro i watched a 60 minute video and couldnt understand a thing u with just a 10 minute vid only and helped me more than anything, thank you so much.
Excellent on delivery of complex topic in very simple and direct way. This Python Object Oriented Programming (POOP) Simplified. Thanks.
This is one of the best videos for Python OOP. Thanks gentleman!
I'm currently trying to get through my cs class and my professor is good, but your videos were able to clear up a bunch of questions I had about creating classes. Thank you for the video!
10min video made this subject way easier to understand than the 3, 1 hour long videos I've watched
This is a great tutorial for someone to get a quick idea about oop. I suggest following along with the exercise.
THANK YOU FOR BRINGING THIS 3 YEARS BACK!
Straight to the point. Really clear. Thx :)
I have been trying to get my brain around Classes for a little while now. This is the easiest explanation that I have found so far. Thank you very much.
Thank you!!! I have watched several videos before this one, but just now I have a clear idea of OOP.
Thank's so much bro 10 minute wow every opp tut is over1 hour you are the best on TH-cam !^_^
Why people do not make life easier for other people? I watched your video and simply I understood the idea within 10 minutes. Next …
Thank you very much bro 🌹🙏 I will not forget you in my pray.
I love u , everyone that explains OOP complicate everything, you make it so simple , ty :D
Best introduction to Python Object Oriented Programming for beginners. You saved me a lot of time.
This had made the most sense to me so far. I subscribed mostly because you chose a Corvette as the car!
Bro's voice is soothing and smooth, good for listening a long time without getting agitated.....
With a little bit of practice i think i might be able to do this thank you so much bro
OOP now is a lil bit clearer. Thank you, brother.
So many other comments are already saying it, but it is true, a very clear and straightforward explanation of classes and methods. Great video.
Love you bro!
You make these instructions so easy im able to engage more than other videos your one of the great youtubers
Bro, this is one of the easiest to understand and to the point for this foundational topic on TH-cam. Thank you Bro! ;-)
A lot of videos about python topics stretch into the hour-long mark and are a headache to get through. Been struggling the last couple of days to get a handle on OOP in Python, but this video gave me a real foundational understanding of it which should help me learn a ton.
Thanks, as someone who already knows how to program, I appreciate how fast you went through syntax (which is really all im looking for)
Thank you! Awesome video!
This is actually my 2nd or 3rd time watching it. The first couple times i really wasnt ready to process te information. Now, after some time stiudying the basics I'm able to get a much better grasp.
Let my mistake be a lesson to us all. Take your time and start from the beginning!
God bless y'all
Thanks for teaching me how to do POOP :)
Literally shat one out while you put POOP up there.
Blessing from the gods.
Ur literally helping me get through my intro to programming class. Thank You!
You really have a knack for teaching. This is great stuff!
Dear BroCode, thanks for covering Python oop vids. Loving your channel since 2021!
you are a very good teacher , i see people that are not able to pick a example for an object. I hope that your channel cover more serious and complex stuff that well too. thanx for the effort
Thanks you! The most simplified explaining of OOP...
this was the first time I felt like I need to watch another tutorial as well to fully understand BroCode tutorial, then I watched this one again and understood it fully. BTW, you are great Bro😍
Ismael Bakali from morocco. this videos are relly the best. they helped me to learn faster.. thinks .
I’ve been trying to better understand OOP and this video is a life saver!!
Great video, great instructor, great examples! I struggled with the "self" keyword in the methods, but this helped @ 8:00 with how you explained it bluntly (self is referenced to car1). Thank you for that.
👌
This is the best video for OOP. You made it so easy to understand. Thanks bro!
you saved my life
I was having such a difficult time with oop so this was extremely helpful. Thanks a ton wish u all the best
Exactly what I needed, short and concise just to get familiar with the syntax, thank u!!!!
The only OOPs tutorial which actually makes sense.
8:17 u could also use a formatted string here, it’s more convenient imo
Short and precise, just what I was looking for. Thanks :)
Thank you for making this video I now know enough to answer some interview questions about OOP, and I can't wait to learn more.
Seeing the acronym POOP I already know this will be good shi* hahaha
But seriously, I've watched other explanations here on youtube and they seem to always assume that I already know words like object, attributes, method, and all that stuff while at the same time putting "for beginners" in their title. Even if they explain it, they will just say the definition and the sample code and I'm still confused.
But you just solved all my confusions from other videos in like a couple of seconds by telling me the examples around you and just like that I already know what it means. You really are a bro, bro. ❤
Bro, Your explanations are vivid. You're a great teacher
Very Good tutorial! Helps a lot! I am not into OOP up until now. Thanks fot the video man! We really apprecciate it!
Bro explained it clearly ,best video for OOPS🙌
You made it so easy to understand. I hope to see some advanced stuff too from you. Thank you.
This video really helped me understand Classes, objects, attributes and methods along with the init methods.
This was easy to follow, not too fast and not too slow.
Bro, thank you so much for this video. I've just begum my programming proccess and I always find myself comming back to this video while working on my personal projects. Thak you so SO much
OOP doesn't make much sense unless you have an architect and a programming team. It's hardly useful for "personal projects".
You're doing great! Keep inspiring us Bro!
I have had tried multiple videos till sanity ! But his guy helped me with a 10 min gem content .
This was really concise and helpful. This is what I was looking for. Thank you! :)
I never thought I’d have so much fun learning about poop. You never cease to amaze me, Bro Code 💪❤️
I'm super new to coding and your explanation's are very helpful. I've subscribed, liked and commented Thanks!
Fantastic video addressed to my confusion about self.attributes
Thank you, Bro Code. Your video is the best video I've seen about Object-Oriented Programming (OOP) in Python. Your explanation made everything clear and helped me understand all the concepts I had in mind.
That's the best POOP video I've seen on the internet. Thank you for sharing.
😂 wooah so you like POOP videos huh!
Thanks, bro! This will help me in class this week for sure
Subbed. Thanks dude, I’ve been struggling to wrap my head around this.
You make learning so easy, poop or oop is very hard to understand especially rhe parts of class, thankyou BroCode.
One of the best OOP tutorials fr.
i was so much tensed about object orinted programming it was really to understand please make lot of vedios like this thank you
What an enlightenment, it taught me "self" ✨
Finally I understood what the constructor is for. Great video
I'd rather you took twice as long and explained something slowly than try to do what most other people do which is try to explain as succinctly as possible. Brevity doesn't always help learning ! So thank you for your slow simple steps! 😊❤