Python Object Oriented Programming in 10 minutes 🐍

  Рет қаралды 359,037

Bro Code

Bro Code

3 жыл бұрын

python object oriented programming OOP tutorial example explained
#python #objects #OOP
#------------------------------------------------------------------
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")
#------------------------------------------------------------------
music credits 🎼 :
===========================================================
Up In My Jam (All Of A Sudden) by - Kubbi / kubbi
Creative Commons - Attribution-ShareAlike 3.0 Unported- CC BY-SA 3.0
Free Download / Stream: bit.ly/2JnDfCE
Music promoted by Audio Library • Up In My Jam (All Of A...
===========================================================

Пікірлер: 742
@BroCodez
@BroCodez 3 жыл бұрын
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") #-----------------------------------------------------------------
@notsaeed
@notsaeed 3 жыл бұрын
"POOP"
@GaryChike
@GaryChike 2 жыл бұрын
The French acronym is literally "POO" 💩
@chiranjivibaduwal8239
@chiranjivibaduwal8239 2 жыл бұрын
Hi bro
@TornadoPro2712
@TornadoPro2712 Жыл бұрын
if python object oriented programming had a color it would be brown XD
@uzowuluonyinye8945
@uzowuluonyinye8945 11 ай бұрын
Thank you bro❤❤❤❤❤
@zain__ua
@zain__ua 3 жыл бұрын
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 :)
@popupanimations1857
@popupanimations1857 3 жыл бұрын
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.
@jaylooppworld381
@jaylooppworld381 2 жыл бұрын
i felt the same
@shaneb395
@shaneb395 2 жыл бұрын
Same, I tried learning Java maybe 20yr ago as a kid, couldn’t do it, OOP was too abstract
@hannahlocalio7011
@hannahlocalio7011 2 жыл бұрын
SAME. This fits perfect for my assignment that im struggling on. So helpful
@noname0662
@noname0662 2 жыл бұрын
@@popupanimations1857 tech with tim sucks!
@marcomallia8423
@marcomallia8423 Жыл бұрын
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!
@SmoothCoaxing
@SmoothCoaxing 2 жыл бұрын
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!
@emmakatovich2438
@emmakatovich2438 2 жыл бұрын
Taught me more in 10 minutes than my professor has in two months
@sara-zv5pb
@sara-zv5pb Жыл бұрын
ong
@bettinanoszaly8223
@bettinanoszaly8223 Жыл бұрын
Yup, same same. Congrats for the video @bro
@Fakecloak
@Fakecloak 9 ай бұрын
😂
@Kaizokuo1453
@Kaizokuo1453 Ай бұрын
My prof tried to teach me python for almost 2 years now and this bro taught me more in 10 mins
@muhammaduzairkabeer8354
@muhammaduzairkabeer8354 2 жыл бұрын
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.
@IYoseff
@IYoseff 2 жыл бұрын
Unbelievably straight forward, surely gonna be watching your other videos soon. Thanks for the great work!
@nathanconley3547
@nathanconley3547 8 ай бұрын
You simplified this perfectly. No BS explanation and I am here for it, after spending too much time learning this through over complicated means.
@ch0wderz912
@ch0wderz912 2 жыл бұрын
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!
@oyebisidara6624
@oyebisidara6624 Жыл бұрын
I got more understanding about OOP from this than any OOP material I've come across in the last two years. Thanks.
@benfrost5317
@benfrost5317 2 жыл бұрын
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.
@MrChrisgZ
@MrChrisgZ 2 жыл бұрын
This was such an easy way to understand as some who just started coding a few days ago. Thank you!
@tancrediloprestipiccolo7761
@tancrediloprestipiccolo7761 3 күн бұрын
You're great, you made me code again in a difficult moment. I will follow your videos from now on!
@MrUnstoppableHeart
@MrUnstoppableHeart Жыл бұрын
Thanks, as someone who already knows how to program, I appreciate how fast you went through syntax (which is really all im looking for)
@gymnodinium9
@gymnodinium9 Жыл бұрын
I love u , everyone that explains OOP complicate everything, you make it so simple , ty :D
@FilipToma78
@FilipToma78 Жыл бұрын
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
@spowers0409
@spowers0409 Жыл бұрын
This had made the most sense to me so far. I subscribed mostly because you chose a Corvette as the car!
@empowercode
@empowercode 3 жыл бұрын
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 KZfaq Journey and can't wait to watch your next upload. Cheers, happy holidays, and keep up the great work :)
@dsadams17
@dsadams17 2 жыл бұрын
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.
@Xxfrost95xX
@Xxfrost95xX 3 жыл бұрын
Straight to the point. Really clear. Thx :)
@Kemmydai
@Kemmydai Жыл бұрын
Brillant, Concise, Comprehensive, Simplified Thats the exact definition of this video. Thank you so much!
@ceciliaw1065
@ceciliaw1065 Жыл бұрын
Exactly what I needed, short and concise just to get familiar with the syntax, thank u!!!!
@yamashitamoleya7861
@yamashitamoleya7861 3 жыл бұрын
YOU KILLED IT!! GREAT STEP BY STEP BREAK DOWN.... THANK YOU
@Ali-dx2ns
@Ali-dx2ns 2 жыл бұрын
Thank's so much bro 10 minute wow every opp tut is over1 hour you are the best on KZfaq !^_^
@Hurtcules
@Hurtcules 2 жыл бұрын
This is a great tutorial for someone to get a quick idea about oop. I suggest following along with the exercise.
@caiorimoli3466
@caiorimoli3466 Жыл бұрын
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 =)
@JIREN972
@JIREN972 Жыл бұрын
This dude explained OOP better than chatGPT💀
@tobitv123
@tobitv123 7 ай бұрын
Ur literally helping me get through my intro to programming class. Thank You!
@classytong2485
@classytong2485 3 ай бұрын
Very easy to understand lecture on OOP. Agree this is the best video on OOP I have watched on KZfaq
@GoingUpNorth
@GoingUpNorth 11 ай бұрын
So many other comments are already saying it, but it is true, a very clear and straightforward explanation of classes and methods. Great video.
@kendiener5447
@kendiener5447 Жыл бұрын
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.
@MrPK-en6nv
@MrPK-en6nv 2 жыл бұрын
This is one of the best videos for Python OOP. Thanks gentleman!
@dbromero2351
@dbromero2351 8 ай бұрын
I was avoiding this topic like the plague! But, thanks to this video, I finally understand how POOP works. Thanks, Bro!
@Kimberly-zz4te
@Kimberly-zz4te 7 ай бұрын
I'm new to programming and your videos are helping out in ways a book can't really do. THANKS!!!!!!!!!!!!!!!!!
@KS-ko2zl
@KS-ko2zl 3 жыл бұрын
You made it so easy to understand. I hope to see some advanced stuff too from you. Thank you.
@gluttonydemon
@gluttonydemon 2 жыл бұрын
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.
@xzex2609
@xzex2609 2 жыл бұрын
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
@xXxXLostVoiceXxXx
@xXxXLostVoiceXxXx 2 жыл бұрын
Subbed. Thanks dude, I’ve been struggling to wrap my head around this.
@stefanfredin7120
@stefanfredin7120 3 ай бұрын
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!
@AmlisSanches
@AmlisSanches 4 ай бұрын
I hav been trying to understand this a while and you cleared up a lot of information for me. Thanks .
@bappysani
@bappysani Жыл бұрын
Dear BroCode, thanks for covering Python oop vids. Loving your channel since 2021!
@rajanroland3903
@rajanroland3903 Жыл бұрын
You really have a knack for teaching. This is great stuff!
@coar119
@coar119 Жыл бұрын
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.
@JesusHernandez-dh1mo
@JesusHernandez-dh1mo Жыл бұрын
I started with your java course in this channel and... You still giving me the answers when I dont get something working. Magic
@agentprismarine2778
@agentprismarine2778 Жыл бұрын
As someone who knew what OOP was but forgot bits and pieces about it, this video was great for relearning and revising OOP
@smellyskunk6189
@smellyskunk6189 11 ай бұрын
You are a rare gem my friend. Keep up the best work!
@albertovalencia992
@albertovalencia992 3 ай бұрын
Very Good tutorial! Helps a lot! I am not into OOP up until now. Thanks fot the video man! We really apprecciate it!
@Bigtime_Dave
@Bigtime_Dave 7 ай бұрын
Thanks bro i really appreciate, been stuck on oop for some days on my course and every other video seemed to make it even harder to understand. But yours finally helped me out, u just earned a new loyal subscriber
@benjaminbialy6284
@benjaminbialy6284 3 жыл бұрын
great explanation man. the simplicity of which you explain it has given me some confidence to go and implement it myself!
@homap5270
@homap5270 2 ай бұрын
WAW, what an amazing tutorial! Thank you so much!
@user-nf4rm1lz3g
@user-nf4rm1lz3g 24 күн бұрын
THANK YOU FOR BRINGING THIS 3 YEARS BACK!
@themob100
@themob100 Жыл бұрын
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 👍🏽
@arkadyutipaul246
@arkadyutipaul246 3 ай бұрын
This was really concise and helpful. This is what I was looking for. Thank you! :)
@sophiarubens8329
@sophiarubens8329 Жыл бұрын
I've become pretty comfortable with procedural programming in C and FORTRAN but am now trying to teach myself Python through the documentation tutorial which left me a bit confused until watching this video. Thanks for the explanation!
@plantahiperactiva
@plantahiperactiva Жыл бұрын
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
@lepidoptera9337
@lepidoptera9337 Жыл бұрын
OOP doesn't make much sense unless you have an architect and a programming team. It's hardly useful for "personal projects".
@prajancodes2781
@prajancodes2781 14 күн бұрын
You're doing great! Keep inspiring us Bro!
@joshuamasunda1012
@joshuamasunda1012 Жыл бұрын
I was having such a difficult time with oop so this was extremely helpful. Thanks a ton wish u all the best
@madelineflores3534
@madelineflores3534 2 жыл бұрын
I’ve been trying to better understand OOP and this video is a life saver!!
@SadhamHussainsree
@SadhamHussainsree 2 жыл бұрын
This is the best video for OOP. You made it so easy to understand. Thanks bro!
@rexypy
@rexypy Ай бұрын
This is still an amazing explanation. I already knew OOP but I was like, lets give this a shot. Glad I did. Spent the 10 minutes looking and listening without a need to stop the vid or a need to say "ahh already know this". Explained to beginners, strengthened knowledge for others!
@onedayzero
@onedayzero 2 жыл бұрын
Dude this was an amazing explanation. Thanks for making this.
@heroboy6199
@heroboy6199 6 ай бұрын
One of the best OOP tutorials fr.
@King.Aligator
@King.Aligator 2 жыл бұрын
Thanks you! The most simplified explaining of OOP...
@starwyvern010
@starwyvern010 Ай бұрын
Thanks, bro! This will help me in class this week for sure
@richardmichael1639
@richardmichael1639 Жыл бұрын
This video really helped me understand Classes, objects, attributes and methods along with the init methods.
@billygene589
@billygene589 2 жыл бұрын
That was such a clear explanation, awesome work bro!
@stianmaurstad
@stianmaurstad 5 ай бұрын
Bro, this is one of the easiest to understand and to the point for this foundational topic on KZfaq. Thank you Bro! ;-)
@TearsAnonymous
@TearsAnonymous 11 ай бұрын
Best introduction to Python Object Oriented Programming for beginners. You saved me a lot of time.
@Hitchxi11
@Hitchxi11 Жыл бұрын
Bro, Your explanations are vivid. You're a great teacher
@renysand
@renysand 2 жыл бұрын
Thank you for all your videos. They are really helpful and also superbly produced.
@thelonelyvoyage
@thelonelyvoyage 2 жыл бұрын
OOP now is a lil bit clearer. Thank you, brother.
@SelfEngine101
@SelfEngine101 11 ай бұрын
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.
@landothemaker4340
@landothemaker4340 2 жыл бұрын
Thank you so much, really helped me! PS: you got a new subscriber!
@duaaali3790
@duaaali3790 Жыл бұрын
Amaaazing!! Absolutely to the point. Thank you!
@erniepaj
@erniepaj 4 ай бұрын
Straight to the point. I love this.
@ludwigvangogh4218
@ludwigvangogh4218 2 ай бұрын
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. ❤
@afshin3k3
@afshin3k3 9 ай бұрын
Thanks a lot for the clear and easy-to-follow explanation!
@Ambitious_Achiever002
@Ambitious_Achiever002 6 ай бұрын
Amazing video. Pretty sure it's the best one out there.
@hamideby8725
@hamideby8725 2 жыл бұрын
Thank you soldier , you're a life-saver
@obazeeghosa
@obazeeghosa 9 күн бұрын
Excellent on delivery of complex topic in very simple and direct way. This Python Object Oriented Programming (POOP) Simplified. Thanks.
@Adriane_Deathscythe
@Adriane_Deathscythe Жыл бұрын
Thank you man, learned it easy and a fast way.
@Anmolsingh-im3hq
@Anmolsingh-im3hq 4 ай бұрын
With a little bit of practice i think i might be able to do this thank you so much bro
@jmwoz3109
@jmwoz3109 Жыл бұрын
Totally cleared up some massive confusion in n my end. Thank you!
@americanpride5540
@americanpride5540 11 ай бұрын
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.
@Zachzac-Zak
@Zachzac-Zak 7 ай бұрын
Fantastic video addressed to my confusion about self.attributes
@PoeticallyDivine
@PoeticallyDivine 2 жыл бұрын
This was an excellent refresher!
@thinwutyee171
@thinwutyee171 3 жыл бұрын
This is cool to learn basic OOP for Python, Thanks!
@DrThier32
@DrThier32 2 жыл бұрын
Finally someone who can explain it to normal people. Thank you👍🏾
@gymnodinium9
@gymnodinium9 Жыл бұрын
the problem is that everyone tries to explain it like you are an idiot that can't understand abstract concepts, so they overcomplicate it.
@SalaarShekhani
@SalaarShekhani Жыл бұрын
@@gymnodinium9 ikr
@TomTalley
@TomTalley Жыл бұрын
Just taking up programming again after years. Decided to try python...my target is going to be the small controller systems like the esp32...I get oop's value and need desperately to understand the syntax and organization of the code in a project. Your video helped ma a great deal...thank you.
@sinahaghani5981
@sinahaghani5981 3 ай бұрын
Simple, shirt and practical. Thank you 🙏
@franswinata1554
@franswinata1554 Ай бұрын
thanks bro, really helped me to understand the basic. great video!
@rickmarek2588
@rickmarek2588 6 ай бұрын
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 KZfaq ventures into the land of Python.
@Gamingman12362
@Gamingman12362 5 ай бұрын
Wow
@clintwestwood4545
@clintwestwood4545 2 жыл бұрын
I never thought I’d have so much fun learning about poop. You never cease to amaze me, Bro Code 💪❤️
@dragon_xy3742
@dragon_xy3742 11 күн бұрын
let's goooo , I understand everything thanks bro !!
@cuttestpomeraniansimbafrie2600
@cuttestpomeraniansimbafrie2600 Жыл бұрын
Bro's voice is soothing and smooth, good for listening a long time without getting agitated.....
@sunid8346
@sunid8346 7 ай бұрын
Awesome video, bro!
@plainvanillamiscellaneous6884
@plainvanillamiscellaneous6884 3 жыл бұрын
Finally I understood what the constructor is for. Great video
@bobbilderson8556
@bobbilderson8556 2 жыл бұрын
Literally shat one out while you put POOP up there. Blessing from the gods.
@itzDJ73
@itzDJ73 2 жыл бұрын
Great video! I have a much better understanding of OOP in Python now
@capiido6426
@capiido6426 2 ай бұрын
This was so helpful and well explained. Thank you very much!
@carterjackson7460
@carterjackson7460 3 жыл бұрын
Very clear and to the point, thanks Bro :)
Learn Python Object Oriented Programming! 🚗
12:18
Bro Code
Рет қаралды 11 М.
Python Object Oriented Programming (OOP) - For Beginners
53:06
Tech With Tim
Рет қаралды 3,3 МЛН
KINDNESS ALWAYS COME BACK
00:59
dednahype
Рет қаралды 133 МЛН
Nutella bro sis family Challenge 😋
00:31
Mr. Clabik
Рет қаралды 12 МЛН
That's how money comes into our family
00:14
Mamasoboliha
Рет қаралды 9 МЛН
25 nooby Python habits you need to ditch
9:12
mCoding
Рет қаралды 1,7 МЛН
Python inheritance 👪
7:19
Bro Code
Рет қаралды 76 М.
Python abstract classes 👻
7:45
Bro Code
Рет қаралды 73 М.
5 Tips For Object-Oriented Programming Done Well - In Python
16:08
C++ Developer Learns Python
9:26
PolyMars
Рет қаралды 2,7 МЛН
Let's code a beginner's Python BANK PROGRAM 💰
15:01
Bro Code
Рет қаралды 91 М.
5 Good Python Habits
17:35
Indently
Рет қаралды 418 М.
5 Uncommon Python Features I Love
15:09
Indently
Рет қаралды 137 М.
Python lists, sets, and tuples explained 🍍
15:06
Bro Code
Рет қаралды 242 М.
3 PYTHON AUTOMATION PROJECTS FOR BEGINNERS
17:00
Internet Made Coder
Рет қаралды 1,5 МЛН
Хотела заскамить на Айфон!😱📱(@gertieinar)
0:21
Взрывная История
Рет қаралды 6 МЛН
Как слушать музыку с помощью чека?
0:36