Lecture 9 : OOPS Part 2 | Object Oriented Programming | Python Full Course

  Рет қаралды 496,141

Shradha Khapra

Shradha Khapra

Күн бұрын

Пікірлер: 776
@shradhaKD
@shradhaKD 8 ай бұрын
Please Note: (i) Part 10 has already been uploaded in One Shot on Apna College (sorry we forgot to upload it here, will do soon) (ii) While learning overloading we have represented complex numbers' real & img part as i & j to make the concept understandable for younger & non-maths students. No need to worry if you don't understand complex numbers, it is just an example used to understand overloading concept❤
@hemanthkumarkurakula4209
@hemanthkumarkurakula4209 8 ай бұрын
Didi please do a playlist on DSA with Python 😢❤
@yashbansal9766
@yashbansal9766 8 ай бұрын
Didi pls make playlist on machine learning and robotics
@NehadAsgar
@NehadAsgar 8 ай бұрын
Cute Aman sir ki wife please (web dev.& DSA) ke alwa v kuchh KZbin pr upload kijiye na❤️ like SDE,AI/Ml
@flyingheart_07
@flyingheart_07 8 ай бұрын
Thank you @Shradha Khapra ma'am today I completed my python with all your lectures and I also completed C language. This is the best channel for my coding journey. 👉🏻✍🏻✍🏻I hope you will try to upload DSA in Python in KZbin as well as ✍🏻✍🏻👈🏻❤❤
@newthinkingnewpossibilities
@newthinkingnewpossibilities 8 ай бұрын
Shraddha Mam, google drive me apne Lecture 9 ki notes nahi dali hai. kya ap wo daldoge?
@sherlockholmes4035
@sherlockholmes4035 8 ай бұрын
This is an object oriented tutorial. Cleared every doubtful object in my brain class
@tooclose80
@tooclose80 10 ай бұрын
00:01 Part 2 covers inheritance and polymorphism in OOP 02:21 Explaining the concept of private entity in object-oriented programming. 07:04 Concept of private and public in Python classes. 09:33 Understanding private attributes and methods in classes. 15:37 Inheritance in OOP allows properties and methods to be passed from parent to child classes 19:36 Learning about inheritance and the super method in OOP 26:13 Static methods cannot access and modify class state but can be used for utility in Python. 28:10 Understanding the impact of class attribute changes on object attributes 32:13 Understanding the three types of functions in OOPS: static methods, class methods, and instance methods. 34:14 Calculating percentage of student marks using OOPS 38:42 Automatic updates based on attribute changes 40:48 Understanding Polymorphism and Operator Overloading 45:05 Operator overloading allows operators to have different meanings based on context. 47:28 Complex numbers have real and imaginary parts, which are added separately. 52:25 Creating a function to add complex numbers 55:05 Operator overloading changes the meaning of operators for a class 59:03 Creating a Circle class and defining constructor and methods 1:01:30 Creating and using classes in Python with attributes and methods. 1:06:35 Separate logic for different data types in classes. 1:08:30 Last lecture will focus on project-oriented implementation.
@ShadowKing010
@ShadowKing010 8 ай бұрын
Kab aa raha hai fir yeh last lecture
@ekanshjain7350
@ekanshjain7350 27 күн бұрын
yo ty
@Thecountrys
@Thecountrys 7 ай бұрын
Timestamp 00:00 Part 2 covers inheritance and polymorphism in OOP 02:21 Explaining the concept of private entity in Object-oriented programming. 07:04 Concept of private and public in Python classes. 09:33 Understanding private attributes and methods in classes. 15:37 Inheritance in OOP allows properties and methods to be passed from parent to child classes 19:36 Learning about inheritance and the super method in OOP 26:13 Static methods cannot access and modify class state but can be used for utility in Python. 28:10 Understand ing the impact of class attribute changes on object attributes. 32:13 Understanding the three types of functions in OOPS: static methods, class methods, and instance methods. 34:14 Calculating percentage of student marks using OOPS 38:42 Automatic updates based on attribute changes 40:48 Understanding Polymorphism and Operator Overloading. 45:05 Operator overloading allows operators to have different meanings based on context. 47:28 Complex numbers have real and imaginary parts, which are added separately. 52:25 Creating a function to add complex numbers. 55:05 Operator overloading changes the meaning of operators for a class. 59:03 Creating a Circle class and defining constructor and methods. 1:01:30 Creating and using classes in Python with attributes and methods. 1:06:35 Separate logic for different data types in classes. 1:08:30 Last lecture will focus on project-oriented implementation.
@aryanaggarwal2586
@aryanaggarwal2586 10 ай бұрын
After Python beginner Please make Python Intermediate course also & Python exercises discussion for practice
@vatsaljuneja913
@vatsaljuneja913 Ай бұрын
yeah where to do actual excercises
@priyanshutewatiya
@priyanshutewatiya 4 ай бұрын
00:00​ Part 2 covers inheritance and polymorphism in OOP 02:21​ Explaining the concept of private entity in object-oriented programming. 07:04​ Concept of private and public in Python classes. 09:33​ Understanding private attributes and methods in classes. 15:37​ Inheritance in OOP allows properties and methods to be passed from parent to child classes 19:36​ Learning about inheritance and the super method in OOP 26:13​ Static methods cannot access and modify class state but can be used for utility in Python. 28:10​ Understanding the impact of class attribute changes on object attributes 32:13​ Understanding the three types of functions in OOPS: static methods, class methods, and instance methods. 34:14​ Calculating percentage of student marks using OOPS 38:42​ Automatic updates based on attribute changes 40:48​ Understanding Polymorphism and Operator Overloading 45:05​ Operator overloading allows operators to have different meanings based on context. 47:28​ Complex numbers have real and imaginary parts, which are added separately. 52:25​ Creating a function to add complex numbers 55:05​ Operator overloading changes the meaning of operators for a class 59:03​ Creating a Circle class and defining constructor and methods 1:01:30​ Creating and using classes in Python with attributes and methods. 1:06:35​ Separate logic for different data types in classes.
@Shikhar0718
@Shikhar0718 7 ай бұрын
00:01 Object Oriented Programming - Inheritance and Polymorphism 02:21 Understanding public and private entities in object-oriented programming 07:04 We can make attributes and methods private inside a class using double underscore. 09:33 Objects can access private members within the class 15:37 Inheritance allows properties and methods to be passed on 19:36 Understanding inheritance and the super method in OOP. 26:13 Static methods in Python can't access and modify class state but are used for utility purposes. 28:10 Understanding the impact of changing class attributes and object attributes in Python OOP 32:13 Understanding different types of methods in Python classes 34:14 Calculation of percentage based on marks of multiple subjects 38:42 Polymorphism is the concept of using the same thing in different ways, and Python provides a good example of polymorphism. 40:48 Operator overloading changes operator meanings based on context. 45:05 Operator overloading allows different meanings according to context. 47:28 Complex numbers are added by adding their real and imaginary parts separately. 52:25 Creating a function to add two complex numbers 55:05 Operator overloading in Python classes 59:03 Creating and defining methods in a Circle class. 1:01:30 Creating Employee and Engineer classes with attributes and methods 1:06:35 Custom class logic for comparison in Python 1:08:30 Remaining lectures will focus on project implementation. Crafted by Merlin AI.
@flyingheart_07
@flyingheart_07 8 ай бұрын
Thank you @Shradha Khapra ma'am today I completed my python with all your lectures and I also completed C language. This is the best channel for my coding journey. I hope you will try to upload DSA in Python in KZbin as well as ❤❤
@bishalkhatiwada2607
@bishalkhatiwada2607 2 ай бұрын
how are you doing nowadays? has this course helped you?
@faizanmedico
@faizanmedico 10 ай бұрын
I never knew coding in Python could be so fun before you. You're the absolute best teacher. Feeling so grateful for all you have done. You're the best. Not only best, "SuperBest!" I'm Sultan from Pakistan.
@ShadowKing010
@ShadowKing010 8 ай бұрын
Some people are saying this all is very very less in comparison to whole python
@Unidentified.warrior
@Unidentified.warrior 7 ай бұрын
​@@ShadowKing010 but ma'am has written that next parts are uploaded on "APNA COLLEGE" yt channel you can continue to next parts and complete your python learning journey..... ONE ADVICE FOR YOU :- BELIEVE IN YOURSELF NOT IN THOSE "CHAAR LOG" 🗣️
@ShadowKing010
@ShadowKing010 7 ай бұрын
@@Unidentified.warrior i)mam ne mere message ke baad vo message dala tha also sirf 1 hi part aur available hai us channel par usme bhi jyada kuch new to hai nahi ii)Thanks for your advice but I already knew that 🦥so I checked if it was true or not
@Basically7227
@Basically7227 4 ай бұрын
@@Unidentified.warrior I cant find prt 10
@Ashwinkotturu
@Ashwinkotturu 2 ай бұрын
@@ShadowKing010 yes. It's less. There are many channels which discussed python a lot deep.
@brainybenzene9056
@brainybenzene9056 3 ай бұрын
so today i completed this course . it was super useful and i developed a great understanding of all major python concepts. Thank you @Shradhakhapra mam .
@aleezasoomro6155
@aleezasoomro6155 2 ай бұрын
Today I completed taking all lectures. Thank you so much, Shradha ma'am. Nobody could have done better than you. You are exceptional. I cannot thank you enough.
@akhileshghatate4157
@akhileshghatate4157 5 ай бұрын
1:03:66 class Employee: def __init__(self, role, dept, salary): self.role=role self.dept=dept self.salary=salary def showDetail(self): print("role=",self.role, "dept=",self.dept,"salary=",self.salary) e1=Employee("analyst","soft",500) e1.showDetail()
@Rohitkumar-ht7gm
@Rohitkumar-ht7gm 10 ай бұрын
Very thankful video i am happy because understand the your lecture and clear python language thankyou so much
@sankalpjain7645
@sankalpjain7645 6 ай бұрын
Thanks for the Video on OOPS it was an amazing lecture. Just wanted to point out 1i + 3j is not a complex number its a form of Vector where i and j are the unit vectors of x and y axis Although concept was clear about the addition. Apart from this Amazing lecture. Thank You so much.
@gd14444
@gd14444 10 ай бұрын
Introduction 00:00 00:38 - del keyword 2:39 - private(like) attributes & methods 11:08 - Inheritance 22:24 - super keyword 26:20 - class method 33:56 - property decorator 39:36 - Polymorphism: Operator overloading 58:52 - Let's practice
@MdMahafuzurRahman-y3o
@MdMahafuzurRahman-y3o 4 ай бұрын
Thank you so much for the entire course. I have completed this course and learned a lot of things..Your clear explanations and practical examples made learning Python enjoyable and accessible. I appreciate the time and effort you put into creating these lessons. Thank you for sharing your knowledge and for being such a fantastic instructor! May Allah bless you..! By the way, I have a question,who is this Rahul Kumar? You have used this name so much in this course that now when I try to give an example, Rahul Kumar comes up.
@AJosl360
@AJosl360 2 ай бұрын
topic with time stamp :-----> 00:01 Object Oriented Programming - Inheritance and Polymorphism 02:21 Understanding public and private entities in object-oriented programming 07:04 We can make attributes and methods private inside a class using double underscore. 09:33 Objects can access private members within the class 15:37 Inheritance allows properties and methods to be passed on 19:36 Understanding inheritance and the super method in OOP. 26:13 Static methods in Python can't access and modify class state but are used for utility purposes. 28:10 Understanding the impact of changing class attributes and object attributes in Python OOP 32:13 Understanding different types of methods in Python classes 34:14 Calculation of percentage based on marks of multiple subjects 38:42 Polymorphism is the concept of using the same thing in different ways, and Python provides a good example of polymorphism. 40:48 Operator overloading changes operator meanings based on context. 45:05 Operator overloading allows different meanings according to context. 47:28 Complex numbers are added by adding their real and imaginary parts separately. 52:25 Creating a function to add two complex numbers 55:05 Operator overloading in Python classes 59:03 Creating and defining methods in a Circle class. 1:01:30 Creating Employee and Engineer classes with attributes and methods 1:06:35 Custom class logic for comparison in Python 1:08:30 Remaining lectures will focus on project implementation. thankyou
@sayeedhasansaim8355
@sayeedhasansaim8355 8 күн бұрын
I have completed this Python course. Thank you for making it easy for me to understand all the concepts very well. Best wishes to you.❤❤
@vaibhavpal420
@vaibhavpal420 8 күн бұрын
Thank you so much Didi sab samj aa gya itna easy tha mujhe nhi pata tha... 🤝🙏❤️🌞. In general you are a focused person and your efforts are helping this generation. You are fulfilling your purpose in life. 😊😊😊 Thank you so much.
@akhileshghatate4157
@akhileshghatate4157 5 ай бұрын
19:31 multi level inheritance using super(): class Car: @staticmethod def start(): print("car started") @staticmethod def stop(): print("car stopped") class Toyotacar(Car): def __init__(self,brand,name): self.brand=brand self.name=name class Fortuner(Toyotacar): def __init__(self, brand, name, type): super().__init__(brand,name) self.type=type class Varient(Fortuner): def __init__(self, brand, name,type, low, middle, top): super().__init__(brand,name,type) self.low=low self.middle=middle self.top=top def details(self): return f"{self.brand} {self.name} {self.type} {self.middle} {self.low} {self.top}" c1=Varient("Toyota","fortuner","petrol","low","middle","top") c1.start() print(c1.details())
@ApurvaSrivastava-rz6ql
@ApurvaSrivastava-rz6ql 2 ай бұрын
46:00 There is a mistake. The number written in the form of (ai + bj) is a Vector and the number written in the form of (a + bi) is a Complex number. But as ma'am taught us process of doing Mathematical operation on Vector is just as similar to that of Complex number. 😊😊Ma'am taught us super good 😍and i really want to thank you ma'am for coming in our life💕💕💕💕💕.
@gchethan9472
@gchethan9472 2 ай бұрын
Hello all This one the best python basic lecture you will ever get, In the entire video she never asked for subscribe or like. Let’s encourage her to do more courses like this and help crores of students and learner’s. Keep up the good work Shraddha and keep on helping people.
@akhileshghatate4157
@akhileshghatate4157 5 ай бұрын
22:18 class A: varA="wecome to a" class B(A): varB="welcome to b" class C(B): varC="welcome to c" B1=B() C1=C() print(B1.varA) print(C1.varA)
@Shahidsoc
@Shahidsoc 6 ай бұрын
@20:10 why we need super to call parent method, earlier we could call parent's methods without super. and even we could call those methods out of the child class in our main code.
@shydcuk
@shydcuk 6 ай бұрын
bro to call parent methods inside the child class **focus on word inside the class ** earlier we are accessing it by making its objects but if we want to get access of those inside the classs we need super()
@shitizgoel5027
@shitizgoel5027 19 күн бұрын
Thank You Ma'am for Python OOP's Part-1 and 2 videos. Really learnt the concept with clarity. 🙂
@prernamayank6151
@prernamayank6151 9 ай бұрын
Very nice mam. Please continue this session and complete it.
@ShadowKing010
@ShadowKing010 8 ай бұрын
Go to apna college channel A long video on python of 10 hour is already available These all vids are just part of that only Ek project hai fir khatam
@heroicboy3668
@heroicboy3668 25 күн бұрын
36:26 oh so doing this(stu1.phy=86) is just modifying the object and not the class so the self.percentage is not changing and to change it we define a new method calc_percentage
@jyotiprajapati9912
@jyotiprajapati9912 9 ай бұрын
other two videos🥺 please upload .This playlists are very helpful
@ShadowKing010
@ShadowKing010 8 ай бұрын
Go to apna college channel A long video on python of 10 hour is already available These all vids are just part of that only
@ShadowKing010
@ShadowKing010 8 ай бұрын
Mini project ka portion reh gaya hai
@paramjjethwa8734
@paramjjethwa8734 Ай бұрын
what a beauiful explanation of inheritance thank you maam god bless you and your team!!
@paramjjethwa8734
@paramjjethwa8734 Ай бұрын
Maam thank you so much you are amazing ill always remember you for teaching me python in the most articulated and simplest way possible best playlist on entire youtube god bless you!!
@dummy0972
@dummy0972 9 ай бұрын
Please continue this series. It was indeed a great help
@ShadowKing010
@ShadowKing010 8 ай бұрын
Go to apna college channel A long video on python of 10 hour is already available These all vids are just part of that only
@ShadowKing010
@ShadowKing010 8 ай бұрын
Ek project ka reh gaya hai usme Jo nahi dala ab tak yha Uske elava free me nahi parayengi tumhari mam
@mdshabbirhasan8133
@mdshabbirhasan8133 10 ай бұрын
I am an application support engineer.. I have knowledge on Java, OOP. very nicely explained staticmethod classmethod
@akhileshghatate4157
@akhileshghatate4157 5 ай бұрын
1:05:14 class Employee: def __init__(self, role, dept, salary): self.role=role self.dept=dept self.salary=salary def showDetail(self): print("role=",self.role, "dept=",self.dept,"salary=",self.salary) class Engineer(Employee): def __init__(self,name,age): self.name=name self.age=age super().__init__("analyst","soft","6000") def showDetail(self): print("role=",self.role, "dept=",self.dept,"salary=",self.salary,"name=",self.name,"age=",self.age) e1=Engineer("akhil",29) e1.showDetail()
@rahukgourkar183
@rahukgourkar183 19 күн бұрын
@shradha Kapra: thank you for creating this Content!
@vigneshholla1212
@vigneshholla1212 Ай бұрын
In code which is shown in the timestamp 26:09, the super method is used to call the constructor of the parent class.But why are you using super().start() , when it can be directly inherited from the parent class Car . Here is the code : class Car: def __init__(self, type): self.type = type @staticmethod def start(): print("car started ....") @staticmethod def stop(): print("car stopped ....") class Toyota(Car): def __init__(self, name, type): self.name=name super().__init__(type) //caling of the parent class constructor car1= Toyota("Innova","Diesel") print(car1.name) print(car1.start()) print(car1.type)
@arsalansiddique9890
@arsalansiddique9890 8 ай бұрын
Hi Shradha, Thank you so much for detailed oriented videos with concepts. I'd ask you, do you have any videos on Java basics as well?
@Oopyy.30
@Oopyy.30 2 ай бұрын
Thankyou soo much shraddha ❤
@devesh09
@devesh09 2 ай бұрын
Lecture 9 notes are not available on the provided link.
@BCA_Aashish
@BCA_Aashish 9 ай бұрын
This lecture is really helpful for me even i learnt c programming language that's why this course became very easy for me. Now i am able to solve some questions in python. "Keep practicing and keep learning" Now i am going to explore my new coding language c++ which helps me during learning DSA. I want to master c++ with DSA. Thanks alot mam for this masterpiece course.
@ShadowKing010
@ShadowKing010 8 ай бұрын
All the best Bhaiya ji
@ShadowKing010
@ShadowKing010 8 ай бұрын
Vese ek baat puchni thi Ya 2-3😅 College life kesi hoti hai jesi school me sochte the vesi ya busy all time wali Bca ki parai easy hoti hai ya muskil Dusri yeh ki placement ka scenario kya hota hai reality mei Bta doge to Purnya milega aapko 🫠
@Gamer_Harsh7572
@Gamer_Harsh7572 8 ай бұрын
@@ShadowKing010 college pe depend karta ha
@ShadowKing010
@ShadowKing010 8 ай бұрын
@@Gamer_Harsh7572 apna experience batana 🫣
@sspanwar-v3m
@sspanwar-v3m Ай бұрын
@@Gamer_Harsh7572 so true, mera college bahut hectic hai :(
@ARYANKUMAR-gz2qw
@ARYANKUMAR-gz2qw 2 ай бұрын
much better than the so called paid courses, Thanks
@mdsadik7444
@mdsadik7444 9 ай бұрын
Mam modiule ke liye ak lecture chahiye please💔🥺🤕
@CuriocityCorner
@CuriocityCorner 3 ай бұрын
Hi Shradha writing this to show appreciation for great content. plz keep making such content. there were some concept that were very beautifully explained PS: prof python developer (1yrs)
@kavitapandye1114
@kavitapandye1114 9 ай бұрын
You are doing great job,please make full playlist of django after this
@nikhilkushwah9286
@nikhilkushwah9286 26 күн бұрын
Thank you ma'am you helped me lot in python for my class test.
@aagmanpal8690
@aagmanpal8690 Ай бұрын
Very Amazing Video!!! Understood Everything!!!
@PhotoshopEditing-t9s
@PhotoshopEditing-t9s 3 ай бұрын
Amazing video. Thanks Shrdha didi! YOU HAVE MADE EVERYTHING CLEAR.
@bhavinthakur
@bhavinthakur 10 ай бұрын
I love the series 😍😍
@vemulasoumyasri830
@vemulasoumyasri830 3 ай бұрын
Love you shradha didi ❤️🥰 ur way of teaching❤️🥰😍🥰🤩
@MdShakil-gx1tr
@MdShakil-gx1tr 5 ай бұрын
Your way of teaching is very helpful mam Thank you so much 🎉
@Dhruv-k5i
@Dhruv-k5i Ай бұрын
Didi Aapki Smile bhut acchi hai ❤.. Happy Diwali 🎇
@laxmiagarwal3285
@laxmiagarwal3285 7 ай бұрын
very nice and informative video, thanks! I wanted to know what is the different use cases of super( ) method and multi-level inheritance?
@dipakkandel2934
@dipakkandel2934 6 ай бұрын
class circle: pi=22/7 def __init__(self,r): self.r=r def area(self): print (int(self.pi*self.r*self.r)) def perimeter(self): print(int(2*self.pi*self.r)) c1=circle(7) c1.area() c1.perimeter()
@nehasoni504
@nehasoni504 9 ай бұрын
Hi.....Can you please make a full course on Power BI, it will be very helpful
@prashanthyadav-k5p
@prashanthyadav-k5p 2 ай бұрын
Today finally completed python series . Thankyou
@tejas0924
@tejas0924 2 ай бұрын
Hi Shardha didi, I cannot find the lecture 9 notes in google drive folder. Please share kar do, apke lectures see muje bohot benefit hua hai. Thanks a lot 🙏
@rohitgehlot5621
@rohitgehlot5621 10 ай бұрын
21.02.24 finally i finished this, looking forward to use those in my way. Thankyou❤️
@pritichowdhury2767
@pritichowdhury2767 7 ай бұрын
Thank You.... You are a great teacher....🙏🙏🙏🙏
@anilabukhari9775
@anilabukhari9775 3 ай бұрын
Really helpful Python Lectures. Thanks a Lot!
@muhammadharis3678
@muhammadharis3678 4 ай бұрын
Shradha Maam you are a very good teacher.
@JagmeetRai
@JagmeetRai 6 ай бұрын
thank you Shardha for creating great content for python learning. It is not only good for adult newbies to learn python but also for young children. my nephew loved this python series. thank you !!
@Sameersingh-r6z
@Sameersingh-r6z 6 ай бұрын
Mam mera PC ke settings me windows update me review your Microsoft license term show kar raha hai toh mai kya karu click karu ya na karu bahut confusion hai plz koi toh reply Karo ❤❤❤❤❤❤❤
@sankalp5034
@sankalp5034 4 ай бұрын
Window ka license version kharidne bolra hai
@byasadevmohanty3028
@byasadevmohanty3028 3 ай бұрын
Thank you didi. I have completed this playlist 🎉❤❤
@GT_650_hr98
@GT_650_hr98 5 ай бұрын
Operator Overloading concept is new to me , Thanks for explaining
@inderjeetkumar1778
@inderjeetkumar1778 10 ай бұрын
Thankyou for offering such a great lecture
@Pardhu-g5g
@Pardhu-g5g 9 күн бұрын
Nice explanation ...Thank you didi
@oreokapoor577
@oreokapoor577 10 ай бұрын
Mam plz tell me how to access to lecture of Sigma batch I have enrolled and it is better start from today so from where I can see lecture
@saadrao804
@saadrao804 4 ай бұрын
we can access any private attribute using name mangling, eg: class Abs: __name = "saad" print(Abs._Abs__name) the output will be saad
@Mr_Gill_
@Mr_Gill_ 8 ай бұрын
Hi guys, I have a doubt: class Car: @staticmethod def start(): print("Car started...") @staticmethod def stop(): print("car stoped///") class Toyota_car(Car): def __init__(self, brand): self.brand = brand class Fortuner(Toyota_car): def __init__(self, type): self.type = type car1 = Fortuner("Diesel") print(car1.start()) This is the code for multi-level inheritance. Can we access the brand in Fortuner class? I want to print Car1's brand. How can I? Because when I declared car1 = Toyota_car("XYZ") then print car1.brand it shows that Fortuner doesn't have brand attribute. If this cannot happen how does inheritance access other things.... time stamp: 19:33
@DhruvKathuria-rh9nk
@DhruvKathuria-rh9nk 7 ай бұрын
class Car: @staticmethod def start(): print("Car started...") @staticmethod def stop(): print("car stoped///") class Toyota_car(Car): def __init__(self, brand): self.brand = brand class Fortuner(Toyota_car): def __init__(self, type): super().__init__('xyz') self.type = type car1 = Fortuner("Diesel") print(car1.brand) Dekho aap class attribute ko toh inheritance mein car1. krke access kr skte ho but jo brand hai wo instance attribute hai toh phle hmein btana pdega na ki is object ke liye brand name chahiye toh isliye hum super() method ka use krte hain jaise maine upar code mein kiya hua hai
@DhruvKathuria-rh9nk
@DhruvKathuria-rh9nk 7 ай бұрын
class Car: @staticmethod def start(): print("Car started...") @staticmethod def stop(): print("car stoped///") class Toyota_car(Car): def __init__(self, brand): self.brand = brand class Fortuner(Toyota_car): def __init__(self, type): super().__init__('xyz') self.type = type car1=Toyota_car('x') print(car1.brand) and jo aapka second doubt tha , toh ye toh execute ho rha hai
@Mr_Gill_
@Mr_Gill_ 7 ай бұрын
Thanks bro
@DhruvKathuria-rh9nk
@DhruvKathuria-rh9nk 7 ай бұрын
@@Mr_Gill_ mention not brother
@manjushapatade5506
@manjushapatade5506 5 ай бұрын
Thank you, Shradha. This is a very helpful series for me.
@Chandravanshi_PN
@Chandravanshi_PN 5 ай бұрын
Last lecture kaha milega mam
@sargam3245
@sargam3245 4 ай бұрын
Did you find the last lecture or not?
@Basically7227
@Basically7227 4 ай бұрын
@@sargam3245 koi mujhe bhi last lecture ka ata pata btao
@Krishna-ez1xy
@Krishna-ez1xy 3 ай бұрын
playlist hai channel pain jake dekho
@prabhatchhatui3992
@prabhatchhatui3992 9 ай бұрын
Thanks didi. I have benefited a lot from watching this video.🙏🙏🙏
@theseeker9591
@theseeker9591 3 ай бұрын
For some reason mujhe didi ka explanation bahot easily samajh aataa hai
@BVKCHHATARPUR
@BVKCHHATARPUR 3 ай бұрын
ok
@tanvirhasanmahmud
@tanvirhasanmahmud 10 ай бұрын
We also need numpy, pandas and matplotlib
@Karannraj
@Karannraj 9 ай бұрын
ya
@xccchannel6083
@xccchannel6083 4 ай бұрын
Thank you so much for everything 🙏 shraddha didi
@deepakjunnarkar1
@deepakjunnarkar1 7 ай бұрын
Very good tutorial. Please add more video like database connectivity with mysql and mongo db, multi theads, piplot, numpy, and more. If you have more paid course related to complete python please share it.
@Oopyy.30
@Oopyy.30 2 ай бұрын
I have best python full course for you
@anjeetkumar5929
@anjeetkumar5929 6 ай бұрын
08.06.24 finally i finished this, looking forward to use those in my way. Totally i take 35 days to complete this playlist, i Don't how i take so much time to complete it . But finally i finished ....... Thankyou
@chiragpratap633
@chiragpratap633 6 ай бұрын
Bhai ab kya start karne wale ho python k baad
@KyuYer
@KyuYer Ай бұрын
complex number mein 'a+ib' hota hai , naa ki 'ai+bj'. COOL BANNE KE SHOK ME YE BHI BHOOL GAYI KI KYA LIKH RHI HAI 🤡
@shivammalik4273
@shivammalik4273 29 күн бұрын
Bhai itti batemezi se btaoge ap
@shivammalik4273
@shivammalik4273 29 күн бұрын
Bhai itti batemezi se btaoge ap
@anishpatwardhan2896
@anishpatwardhan2896 15 күн бұрын
Arey thik hai na hota hai kabhi kabhi.......
@dpndr.d
@dpndr.d 6 ай бұрын
48:55 You can create complex no. directly in python by using : a = complex(x,y) a = variable name x,y = numbers
@abhishekahluwalia2374
@abhishekahluwalia2374 21 күн бұрын
Great Job in this entire series, heartful thank you for sharing the knowledge. When can I expect part 10 to be uploaded here. I am not able to view it. Once again Kuddos to your explainations!!!
@lokeshchaudhary-x1e
@lokeshchaudhary-x1e 7 ай бұрын
teaching way is very nice, a lot of thanks for shradha mam
@krishnakanthati
@krishnakanthati 23 күн бұрын
26:40 : Golden Words
@premsharma2595
@premsharma2595 5 ай бұрын
00:01 Object Oriented Programming - Inheritance and Polymorphism 02:21 Understanding public and private entities in object-oriented programming 07:04 We can make attributes and methods private inside a class using double underscore. 09:33 Objects can access private members within the class 15:37 Inheritance allows properties and methods to be passed on 19:36 Understanding inheritance and the super method in OOP. 26:13 Static methods in Python can't access and modify class state but are used for utility purposes. 28:10 Understanding the impact of changing class attributes and object attributes in Python OOP 32:13 Understanding different types of methods in Python classes 34:14 Calculation of percentage based on marks of multiple subjects 38:42 Polymorphism is the concept of using the same thing in different ways, and Python provides a good example of polymorphism. 40:48 Operator overloading changes operator meanings based on context. 45:05 Operator overloading allows different meanings according to context. 47:28 Complex numbers are added by adding their real and imaginary parts separately. 52:25 Creating a function to add two complex numbers 55:05 Operator overloading in Python classes 59:03 Creating and defining methods in a Circle class. 1:01:30 Creating Employee and Engineer classes with attributes and methods 1:06:35 Custom class logic for comparison in Python 1:08:30 Remaining lectures will focus on project implementation.
@arkapravabhattacharya3118
@arkapravabhattacharya3118 Ай бұрын
In JAVA, multiple inheritance is not allowed. It is handled through interfaces. The logic being if superclass A and B have same properties, then child class C gets confused after inheritance that which property comes from which class. How does Python handle this confusion ? Can you please explain. @Shradha Khapra
@shreefinancialservices3243
@shreefinancialservices3243 7 ай бұрын
Happiest upcoming birthday didi Thoda time hai but wish kar diya so if I forget ther is no problem
@coolg5556
@coolg5556 7 ай бұрын
Mam please reply mene sigma2.0 batch lita hai but course ki video show nahi ho ri kya karu mam
@dhananjayjadhav7568
@dhananjayjadhav7568 6 ай бұрын
IT WAS SUPER AWESOME TO LEARN AND UNDERSTAND ALL CONCEPTS THANKX A LOT
@aitechnoworld
@aitechnoworld 9 ай бұрын
Thanks a lot Shraddha di😊
@armanmansuri5048
@armanmansuri5048 3 ай бұрын
I know its single topic but two 1hr video is bit hard for a begineer just to understand everything......no doubt your teaching is great
@Asrarzohib
@Asrarzohib 10 ай бұрын
Hallo sister I am watching this playlist from Pakistan.thank you❤
@data_eng_tuts
@data_eng_tuts 9 ай бұрын
Shradhha ne jo samjhaya hai vo main jindagi me kabhi nahi bhula paunga, what a lovely lecture ❤
@GameWithGamers28
@GameWithGamers28 29 күн бұрын
Thank you @Shradha Khapra ma'am
@muhammadaliakram5175
@muhammadaliakram5175 7 ай бұрын
Fun fact : She knows about cars, their model very well. Applause 👏 its incredible 🙌
@KaziFarzanaYeasmin-o7p
@KaziFarzanaYeasmin-o7p 22 күн бұрын
Teacher, I am from Bangladesh, Love ur lectures ❤❤❤❤Please do a playlist on DSA with Python ..please please please 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
@seemanazeer01
@seemanazeer01 9 ай бұрын
thank youu for the clear explanation !!
@sorcererop4797
@sorcererop4797 2 ай бұрын
Mazedaar Tutorial
@akankshayadav9987
@akankshayadav9987 6 ай бұрын
Thankyou mam for such a wonderful series 😊
@ananyasingh2333
@ananyasingh2333 4 ай бұрын
Ma'am thank you for this amazing series. Can you please upload a playlist for Linux operating system as well. From the beginning only.
@dharmikgala2668
@dharmikgala2668 2 ай бұрын
Please make a video for Regular Expressions,Multithreaded Programming,Creating the GUI Form and Adding Widgets and Layout Management & Storing Data in Our MySQL Database using PyQt in Python
@AjayKumarSahu_5
@AjayKumarSahu_5 10 ай бұрын
how to acces the notes ?? its not showimg in google drive
@kazalroy6410
@kazalroy6410 6 ай бұрын
Beautiful presentation ❤❤
5 Mistakes Beginner Web Developers Make (Avoid These)
12:09
CodeWithHarry
Рет қаралды 110 М.
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН
Smart Sigma Kid #funny #sigma
00:33
CRAZY GREAPA
Рет қаралды 39 МЛН
Object Oriented Programming in python
1:08:29
Chai aur Code
Рет қаралды 102 М.
FASTEST Way to Learn Coding and ACTUALLY Get a Job
6:32
Rajeev Bera
Рет қаралды 28 М.
Reality of my Google Salary after TAXES
6:54
Fraz
Рет қаралды 300 М.
4 Years of Coding in 4 Minutes - A Short Movie
3:49
Apna College
Рет қаралды 10 МЛН
OOP in Python | Object Oriented Programming
1:45:19
Telusko
Рет қаралды 1,8 МЛН
人是不能做到吗?#火影忍者 #家人  #佐助
00:20
火影忍者一家
Рет қаралды 20 МЛН