Тёмный

Object Oriented Programming in python 

Chai aur Code
Подписаться 332 тыс.
Просмотров 43 тыс.
50% 1

Visit chaicode.com for all related materials, community help, source code etc.
Welcome to chai aur code, a coding/programming dedicated channel in Hindi language. Now you can learn best of programming concepts with industry standard practical guide in Hindi language.
All source code is available at my Github account:
github.com/hiteshchoudhary
Our Open-Source Project is here: freeapi.app
Join me at whatsapp: hitesh.ai/whatsapp
for community discord: hitesh.ai/discord
Instagram pe yaha paaye jaate h:
/ hiteshchoudharyofficial
HTML video series: • HTML and VSCode - gett...
Complete javascript series: • Javascript for beginne...
Complete Reactjs series: • React JS roadmap | cha...
Javascript and react interview series: • 1 call se shuru hui pl...
Backend development with Javascript: • Javascript Backend Roa...
Python Series: • Python series launch |...

Развлечения

Опубликовано:

 

14 фев 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 543   
@swarnabhamajumder9561
@swarnabhamajumder9561 4 месяца назад
Learning Python Day 12 - present sir 00:03 Object Oriented Programming is like making Gujiya 01:58 Understanding object-oriented programming through generalized forms and classes. 05:45 Follow naming conventions and indentation in Python classes. 07:41 Understanding object creation and attributes in Python 11:41 Understanding object-oriented programming in Python. 13:36 Understanding the usage of variables and parameters inside a class in Python 17:44 Method to display full name of car brand and model 19:49 Object-oriented programming concepts in Python 24:06 Creating object and setting up wireless connection 25:55 Using inheritance and 'super' keyword to access parent class methods and attributes in Python 29:34 Encapsulation is about controlling access to class attributes 31:32 Creating methods for accessing and setting attributes in Python 35:31 Encapsulation and its importance 37:36 Polymorphism allows different behaviors for objects of the same class. 41:16 Class variables keep track of shared data, like counting instances. 43:32 Object creation and access in OOP Python 47:44 Static method in Java is a method belonging to the class, not owned by an instance. 49:52 Linking and Wiring in Object Oriented Programming 53:32 Decorators in Python allow you to modify functions. 55:19 Understanding data encapsulation and access control in object-oriented programming 58:51 Understanding the usage of decorators in Python 1:00:42 Understanding property decorators in Python. 1:04:49 Inheritance in electric car programming 1:06:54 Python supports classes, inheritance, and methods
@user-mc1rq4pw1o
@user-mc1rq4pw1o 4 месяца назад
Finally undestoood classes in python so easily, now i finally get what that self, and constructor and how to use them, earlier it was so confusing. Thank you!
@anujpoudel
@anujpoudel 4 месяца назад
58:15 when you did 'my_car.model = "City" ' in line 41 in that instance new property/attribute 'model' was created so now there are two attributes one '__model' and another 'model' for object 'my_car'. This happens because we can create new property for any object on the go and is not necessary to be in the class.
@soumalyadas1123
@soumalyadas1123 Месяц назад
fine observation.
@harshmeetsinghsaluja9773
@harshmeetsinghsaluja9773 11 дней назад
exactly dude....i was confused for 2 hrs and when i figured it out, i saw ur comment ;-;
@danielhaidari1638
@danielhaidari1638 4 месяца назад
been following your videos since 2018 and LCO courses since I was in high school now in my second year uni in Aus. appreciate your work
@Thecircuit001
@Thecircuit001 4 месяца назад
I don’t know why this man is sharing this type of content free in youtube…. 😊…. Sooo much love…. So much valuable information ❤
@sidhantarya2483
@sidhantarya2483 4 месяца назад
Bharat is already famous for rishi-muni gurus and hitesh sir wants best software engineers will also be from India in the whole world.
@manasanmol6604
@manasanmol6604 Месяц назад
Finally found such a detailed playlist, was looking back to remember the definitions when I stumbled over this
@muhammadhilal5807
@muhammadhilal5807 3 месяца назад
i thought that this would be that boring video by learning the OOP with fancy names, but loved it how you explain it by just solving problems and learning along with it.
@devottamvaishnav65
@devottamvaishnav65 3 месяца назад
OOPs was so confusing for me earlier! Finally undestoood classes in python so easily, now i finally get what that self, and constructor and how to use them. Thank you so much sir!
@mubeenashraf8676
@mubeenashraf8676 2 месяца назад
The pass statement is used as a placeholder for future code. When the pass statement is executed, nothing happens, but you avoid getting an error when empty code is not allowed. Empty code is not allowed in loops, function definitions, class definitions, or in if statements.
@Waleedkkhan594
@Waleedkkhan594 3 месяца назад
This single video is more valuable then some RU-vidr's entire channels. Incredible work sir. I learnt so many things. Oops inheritance, polymorphism, constructor, decorator thank you so much sir
@Vishal_0841
@Vishal_0841 4 месяца назад
Guru ji imandari se ab question solve kar raha hu mza aa raha hai ❤
@lakshyaaggarwal1608
@lakshyaaggarwal1608 10 дней назад
Sir You have made things so easy and made me learn to write project code with industry standard while being in college, I have also seen your backend playlist and it has helped me a lot thx a lot
@krishnamania1
@krishnamania1 4 месяца назад
Thank you sir , this is the first time I completely understand OOPS
@anonyone8834
@anonyone8834 4 месяца назад
Pass is special keyword used as a placeholder for a code. In python when we make a class and we want to specify the use case later we just use pass to avoid error and code still being empty
@akashkr8541
@akashkr8541 2 месяца назад
oop se jaldi main bachpan me cycle sikh lia tha. now i am here. thanks for this video. i am going to watch it fully.
@nikshadali50
@nikshadali50 4 месяца назад
Sir, you teach in such a way which make any complex topic very easy
@pranaypaul6361
@pranaypaul6361 4 месяца назад
In Python, static methods are indeed meant to be accessed by the class itself rather than by instances of the class. However, there is a subtle difference in how static methods are defined and accessed in Python compared to other programming languages like Java or C++. In Python, static methods are declared using the `@staticmethod` decorator, which specifies that the method should be treated as a static method. However, static methods in Python are not truly bound to the class itself. Instead, they are bound to the class's namespace, which is the same namespace that contains the class's other attributes and methods. This means that while static methods can be accessed using the class name, they can also be accessed using an instance of the class, as shown in the example you provided. When you call a static method using an instance of the class, the instance itself is not used in any way. The method is simply called using the class's namespace. This behavior is different from static methods in other programming languages, where static methods are truly bound to the class and cannot be accessed using an instance of the class. In Python, the ability to access static methods using both the class name and an instance of the class provides greater flexibility and allows for more concise code in certain situations. It's important to note that while static methods can be accessed using both the class name and an instance of the class, they should generally be accessed using the class name for consistency and clarity. class MyClass: @staticmethod def my_static_method(): print("Hello from static method!") # Calling using the class name MyClass.my_static_method() # Output: Hello from static method! # Calling using an object obj = MyClass() obj.my_static_method() # Output: Hello from static method!
@priyeshsingh7586
@priyeshsingh7586 3 месяца назад
Just thinking what will be a production scenario where static method can be used by both Class and instance of the class as described above.
@M_Abdul1ah
@M_Abdul1ah 14 дней назад
Scrolling through the comments to find someone discussing this… and here you are, brother.♥️
@ankuuur
@ankuuur 4 месяца назад
Thank Your sir ji💖💖💖💖 badhiya se OOPs ke basics clear ho gaye😊😊😊😊
@gamerk88
@gamerk88 8 дней назад
I was stucked in OOp s in python for a day and then I find this vid and understand everything.Highly recommended for understanding oops in python.
@shaikusman536
@shaikusman536 Месяц назад
Awsome content Hitesh sir ji...........Thanks a ton ...keep up the great work....Respect from Bangalore.
@user-pz2oq2qx4u
@user-pz2oq2qx4u 4 месяца назад
this is the best video i ever seen to learn oop concepts in python
@deshichhora0121
@deshichhora0121 3 месяца назад
sir , bahut hi easy way me samjha le gaye ho aap
@manavbhatt3169
@manavbhatt3169 14 дней назад
I have completed the full video at once i loved the way hitesh sir teach , he teached all the concepts so smoothly and in very easy way , Big Thanks for this series sir 🙏✨️
@user-cp9kt3qq2d
@user-cp9kt3qq2d 4 месяца назад
Thank you so much sir for oops concept explanation in a very easy manner 🙏
@subhasreekar1297
@subhasreekar1297 Месяц назад
You have explained all the concepts very easily ... Good for the beginners like me😊
@spm_01
@spm_01 Месяц назад
very nice video with full of learning I am in 4th year now I learnt how to play with oops with python - thank you so much sir :)))
@starksanket3880
@starksanket3880 10 дней назад
Sir, your approach to coding is as simple and refreshing as making a cup of tea. Just like brewing the perfect chai, you blend simplicity with richness, making the learning process both delightful and flavorful. Keep serving those amazing tutorials, they're a treat to our minds!
@MudasirAbbas007
@MudasirAbbas007 4 месяца назад
Sir never seen such a superb video on Python object oriented programming 😊😊
@hetashrikansariwala9527
@hetashrikansariwala9527 4 месяца назад
I am trying to learn oops in python since many days but unable because of you now I am confident in oops. Thank you sir
@devilislive8134
@devilislive8134 3 месяца назад
Bro you are really helping students a lot in such simple answers
@Zeeshantariqpkn
@Zeeshantariqpkn Месяц назад
Method of teaching so perfect with real time examples, can in django series create a video on creating user wiith rights no one created on it yet.
@justtt.prerna
@justtt.prerna 4 месяца назад
Thank you for providing such a valuable content...All my doubts are cleared..
@sky.digitalmedia2732
@sky.digitalmedia2732 2 месяца назад
Sir, you teach in such a way which make any complex topic very easy 💯💯💯💯
@SIR_Studios786
@SIR_Studios786 4 месяца назад
good explanation with examples, c++, c# etc language used preface like private, public, static etc, but in python underscores and decorators play such roles.
@dinesh-hdnd
@dinesh-hdnd 3 месяца назад
maza or samajh dono aa gaya video dekh ke thanks sir...
@tarunsikarwar
@tarunsikarwar 4 месяца назад
amazing teaching skill Hitesh ji. please make a series of Fastapi in hindi
@letstry2854
@letstry2854 4 месяца назад
Great content wth clear explanation sir jee😍😍
@vaishnavikulkarni663
@vaishnavikulkarni663 5 дней назад
Thank you sir. You made this topic so much easier to learn
@sagar-tt4ub
@sagar-tt4ub 4 месяца назад
Congratulations on 200K hitesh sir
@pranaypaul6361
@pranaypaul6361 4 месяца назад
A detailed OOP video....pure concept hammering session!!!
@Ady-tf1jm
@Ady-tf1jm 13 часов назад
Thankyou Sir. Apne bhot easy way mai samja diya.
@sudhanshushekhar1116
@sudhanshushekhar1116 2 месяца назад
I am trying to understand this concept since many months. Now it's clear. Thanks! could you please teach some project on basis of oops?
@abhaymalvi5458
@abhaymalvi5458 3 месяца назад
Best OOPs video on RU-vid!! 🔥
@xedose7183
@xedose7183 3 месяца назад
Great explanation along with examples on OOPS concepts.
@AlokCodes1
@AlokCodes1 18 дней назад
sir, there is a conceptual mistake at 51:47 . You said that the objects can not access static methods, but static method works on classed as well as instances of that class . Investigation study karke pata kiya :) thanks for these lectures (i find this playlist as the fastest way to learn and gain confidence in python) For the viewers: The difference between a normal method and static method is that inside a static method, you can't use any of the properties or method associated with the class. All the implementation has to be done using the parameters of that static method. BTW there is also a classmethod decorator, explore it also
@shrehanarya-iw6vx
@shrehanarya-iw6vx 16 дней назад
thank you so much bhaiya mujhe lag raha tha ki mere code me error h :)
@samiran__roy
@samiran__roy 4 месяца назад
this series needs more recognition
@user-wj1ky8my1h
@user-wj1ky8my1h 2 месяца назад
Excellent tutorial...Thanks a lot!! 😃
@Ashish_00900
@Ashish_00900 4 месяца назад
Thank You Hitesh Bhaiya !!!
@MCoder-x
@MCoder-x Месяц назад
I think this was the best explanation to OOP. Thank you sir🙌🏻
@jesussheepakash9289
@jesussheepakash9289 3 месяца назад
thank you sir , poora concept clear ho gya
@chandranitr5003
@chandranitr5003 19 часов назад
Amazing! I understand very well. Thank you sir
@vardanshprasad5801
@vardanshprasad5801 4 месяца назад
Sir apka English Bahut accha hai free codecamp pe dekha hai
@rinitroy4551
@rinitroy4551 12 дней назад
nice way to demostrate concept using questions
@ashutoshshrivastava9663
@ashutoshshrivastava9663 3 месяца назад
Good work. Commented to meet your goal It's good that you talked about this topic. Disappointed with 'self' explanation.
@Shantanu_lrnr
@Shantanu_lrnr 4 месяца назад
Thank you sir for this python series...really helpful
@sumitsinha1506
@sumitsinha1506 Месяц назад
Great video. Thank you it was really helpful.
@ishatiwari3023
@ishatiwari3023 Месяц назад
what an amazing way of explanation!
@harshitchaudhary1014
@harshitchaudhary1014 Месяц назад
explained in an easy to understand way!
@dysproghoul
@dysproghoul 16 дней назад
this is was perfect rather than those basic generic oops videos this covered most of the things
@MDFAIZANSARI
@MDFAIZANSARI 3 месяца назад
Delivery of topics are very creative.
@Abhay_Pandey_1
@Abhay_Pandey_1 4 месяца назад
Best python series on yt in hindi.
@harshchauhan561
@harshchauhan561 3 месяца назад
Now i understood oops concepts. thank you sir
@Waleedkkhan594
@Waleedkkhan594 4 месяца назад
Thank you for the valuable content 🙏🙏🙏
@aparnapradhan0198
@aparnapradhan0198 4 месяца назад
Good explanation , good example 🎉🎉🎉🎉❤❤❤❤
@VishalMudgal-it9qy
@VishalMudgal-it9qy 2 месяца назад
mast samjhate ho sir , Ek baar m samjh aa ja rha h 😁😁
@vishalrathore7052
@vishalrathore7052 2 месяца назад
love your teaching style
@TechTutorialswithPiyush
@TechTutorialswithPiyush 2 месяца назад
Shuruwat majburi me kari thi Python, ab maja aara hain ❤
@Iamasifshahzad
@Iamasifshahzad 3 месяца назад
Greatest series of ever made on youtube for python
@krishnapalsingh2777
@krishnapalsingh2777 4 месяца назад
Super 🧑‍🔧 "Thoda difficult lg rha hai" 2,3 bar dekhne pr samjh a jaiga😊
@ruthwickmasidkar1655
@ruthwickmasidkar1655 4 месяца назад
was waiting for this topic..though reached late as i was busy somewhere
@muhammadhassanalvi3422
@muhammadhassanalvi3422 3 месяца назад
Great video to start OPP concepts
@raihanhassin7873
@raihanhassin7873 4 месяца назад
Thank you sir for the amazing oops concept
@mohammadahmad19
@mohammadahmad19 4 месяца назад
The Starting is very well Sir
@ayushmishra5861
@ayushmishra5861 4 месяца назад
great video, loved it.
@atharvatirkhunde4517
@atharvatirkhunde4517 3 месяца назад
Great content and explanation sir.
@the.ideal.indian
@the.ideal.indian 15 дней назад
Thank you for your dedication to sharing your knowledge and for creating such high-quality content. Your efforts are truly appreciated and have made a significant impact on my learning journey.
@karnrkyt
@karnrkyt 9 дней назад
10 questions are the best way to teach and learn. maza aa rha hai ish series m😊 great content @hitesh sir
@shahbajalam2076
@shahbajalam2076 29 дней назад
Whoever is watching this video, just remember, the static method part is wrong. The class instance can 100% access the static method. Both class and instance can access the static methods. Static method means it does not get created for each instance, rather it gets created for only once.
@rushikeshmodi4870
@rushikeshmodi4870 Месяц назад
Thank you sir. For such informative video
@riteshkapoor4589
@riteshkapoor4589 4 месяца назад
loved it... tysm
@kaustubhgaikwad2562
@kaustubhgaikwad2562 8 дней назад
4 months but still no 800 comments 😭 He is god level teacher .. help his channel grow
@stayqurious
@stayqurious 4 месяца назад
loved your videos sir
@f50achievers10
@f50achievers10 3 месяца назад
First time understanding the Oops with perfect Example... #HitheshBhaiOp #chai_aur_code
@Entertainment-xu1qc
@Entertainment-xu1qc 4 месяца назад
best tutorial I'm learning python.
@akshitgoel6492
@akshitgoel6492 Месяц назад
Really nice content sir !!!
@letsstartwithrahul8841
@letsstartwithrahul8841 3 месяца назад
video dhekne me mazzza aa jata hai
@SurajKumar-mc9eg
@SurajKumar-mc9eg 3 месяца назад
i have attended few python interviews as a python developer fresher and belive me they ask very tough questions from OOPS concept. please it's a humble request to make atleast one more video on OOP concept
@user-fl5xj3pp1y
@user-fl5xj3pp1y 4 месяца назад
very informative and you expalined it in such nice way ... love from Afghanistan...❤
@shubhamgurjar912
@shubhamgurjar912 4 месяца назад
what a video litterly love you bhaiya🥰🥰
@themonkspeaks299
@themonkspeaks299 Месяц назад
got amazing understanding
@iyiwarrior5457
@iyiwarrior5457 4 месяца назад
Awesome work sir
@asifquasmi4538
@asifquasmi4538 3 месяца назад
Nice explanation sirji
@thenameis8013
@thenameis8013 Месяц назад
great video!!
@kashishrocks
@kashishrocks 4 месяца назад
Thanks a lot sir.
@Barunghorai-pn4vy
@Barunghorai-pn4vy 2 месяца назад
❤gujiya ...love it 💕
@ChandanGiri-lo4cc
@ChandanGiri-lo4cc 22 дня назад
You are one of gem of the teachers ❤❤❤
@khulvemeenakshi
@khulvemeenakshi Месяц назад
Amazing series 👏
@shivmusic9029
@shivmusic9029 3 месяца назад
sir bahut accha padhaya
@namansharma4856
@namansharma4856 2 месяца назад
Fantasticcc workkkk
@AmitSinghShekhawat-kp8zu
@AmitSinghShekhawat-kp8zu 25 дней назад
Great explanation sir till 17th lecture but needed more SPECIFIC & TECHNICAL explanation in Theory of OOPS as first time its seems a bit harder.
Далее
What are decorators in python
39:21
Просмотров 13 тыс.
OVOZ
01:00
Просмотров 727 тыс.
BABYMONSTER - ‘FOREVER’ M/V
03:54
Просмотров 3,7 млн
skibidi toilet multiverse 039 (part 1)
05:29
Просмотров 5 млн
Handling API in python
27:24
Просмотров 14 тыс.
OOP in Python | Object Oriented Programming
1:45:19
Просмотров 1,7 млн
C++ Developer Learns Python
9:26
Просмотров 2,7 млн
Scopes and closure in python
30:54
Просмотров 10 тыс.
Strings in python
30:44
Просмотров 18 тыс.
В поисках семьи😢😱
0:56
Просмотров 5 млн
телега - hahalivars
0:54
Просмотров 2,6 млн