Multiple Inheritance in Python | Python Tutorials for Beginners

  Рет қаралды 44,498

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

Пікірлер: 79
@happy6835
@happy6835 Жыл бұрын
12:51 It will print male class work function because it will search in mro order.
@abinayas0029
@abinayas0029 Жыл бұрын
12:38 Answer for the quiz: I can code
@flipdruid
@flipdruid 7 ай бұрын
Just finish this lecture and I understand very well now, very clear explanation. looking forward for the next lecture for Multi-level Inheritance . Thank you very much author.
@Manoj_Singh1205
@Manoj_Singh1205 Жыл бұрын
Thank you, Jenny! You did a fantastic job explaining the core concepts of Python in a way that was easy to follow, even for someone new to programming.💐
@manojkumarhg9295
@manojkumarhg9295 9 күн бұрын
12.51 class Amma: def eat(self): print("I can prepare") def work(self): print("By cooking") boy_1.work() out : By Working
@FunCorner5332
@FunCorner5332 6 ай бұрын
Always special , Great job thanks Jenny for your knowledge and effort.
@flipdruid
@flipdruid 7 ай бұрын
Its already late here, I am very excited to learn this Multiple Inheritance but I need to sleep now, I still have work for tomorrow. I will comeback this topic tomorrow. Thank you in advance author.
@saisudheshna763
@saisudheshna763 5 ай бұрын
Thank You So Much Madam For Your Wonderful Efforts
@exploretheworld.0155
@exploretheworld.0155 10 ай бұрын
Thank you for a such wonderful lectures
@BN-hy1nd
@BN-hy1nd Жыл бұрын
The beauty of this exercise is not just writing a code but problem solving That was briiliant. It was good to know that even Jenny can forget some points. Thank you I enjoyed that even if I don't understad the whole thing. I will be back to it after a short reflection
@shri10100
@shri10100 Жыл бұрын
Day by day you are you are becoming more beautiful ma'am ❤
@hitlarkapadosi
@hitlarkapadosi Жыл бұрын
Bhai tu yeha krne kya aya hai😅
@shri10100
@shri10100 Жыл бұрын
@@hitlarkapadosi i come to do attend class,but to seeing ma'am I can't concentrate on study, ma'am is very beautiful ❤️
@vaibhavpatharkar6794
@vaibhavpatharkar6794 Жыл бұрын
​@@shri10100 bro she is teacher, our guruji, focus on what knowledge she gives. Writing these things here are of no use, instead they will pollute you mind . Success will come only with concentration. Remember our Guru shishya parampara of Sanatan, Guru comes before god. Give respect to guru. Whenever you are given a option to bow before mother, god and guru. U shd bow 1st before mother , then guru and at last god. Becz u know about god from mother and guru only. Guru = gu means darkness and ru means the process of taking. It means the person who takes us from darkness to light is called guru. 😊
@shri10100
@shri10100 Жыл бұрын
Aap kaha the gyani baba 🙏
@mulasravani5618
@mulasravani5618 10 ай бұрын
I can test ....it will print ....bcoz first it will check its own class ....
@vaibhavpatharkar6794
@vaibhavpatharkar6794 Жыл бұрын
Jennyji apse ek request hai. Ap aisa video banaiye ki jisse humko pata chale ki kaise data analyst ka job hum le . Direct kaise le ya phir , koi job consultancy se kaise le. Mai apko ye isliye bol raha hoon kyun ki hum middle class people free resources se yt se saari cheeje sikh to lete hai lekin job kaisa leneka wo humko nahi pata hota. Kyunki we are 1st graduates of our family aur baki interview anekeliye kya karna chahiye ye bhi hum jaise students ko nahi pata hota. Hence i am saying Pl make job guidance wala video also. I know i am very demanding, but if possible look into this also. 😊
@relightgaming7155
@relightgaming7155 10 ай бұрын
as per mro order[, , , ] first it will search in boy then it will search in Human but work function is only in Male() so it will print "i can code"
@shivakrishna_varma9658
@shivakrishna_varma9658 3 ай бұрын
12:50 It will print I can code
@saikiran2023
@saikiran2023 Жыл бұрын
Madam ur lectures are super Pls upload videos on c++ tutorial
@talhashah3986
@talhashah3986 4 ай бұрын
ThankYou So Much Mam!
@Lucky_truth
@Lucky_truth Жыл бұрын
little confusion?? go fresh your mind watch from begining 🙂
@nageshdeva8936
@nageshdeva8936 Жыл бұрын
class Human: def eat(self): print("i can eat") def drink(self): print("i can drink") class Male: def flirt(self): print("i can flirt") def work(self): print("i can code") class boy(Human, Male): def sleep(self): print("i can sleep") def dance(self): print("i can dance") boy_1=boy() boy_1.work() output: I can code.
@kolasanisirisha5534
@kolasanisirisha5534 Жыл бұрын
Mam can you please share the c program to check whether the entered character is uppercase or lowercase or numeric value using switch case.Eagerly awaiting for your reply mam.Your reply at the fastest would be helpful.🙏🙏🙏
@ultimatemanchanti
@ultimatemanchanti Жыл бұрын
Beautiful concepts for python I want detail material and job reference
@VishalYadav-en5mx
@VishalYadav-en5mx Жыл бұрын
Please suggest me which language is better for DSA
@Yesterday_i_ate_rat
@Yesterday_i_ate_rat Жыл бұрын
Java
@Bruno77457
@Bruno77457 Жыл бұрын
C++
@NARENDRAPAGOTI
@NARENDRAPAGOTI Жыл бұрын
mam plese start java for us or plz give us an update when your going to start it
@NsengiyumvaTheophile-ec1kc
@NsengiyumvaTheophile-ec1kc Жыл бұрын
Hello thank for this training I am biggner so I ask for you to start all from first to end of python
@brabhijith-vp7he
@brabhijith-vp7he 11 ай бұрын
Ma'am please continue os playlist 🙏
@vishnumuraly18
@vishnumuraly18 Жыл бұрын
assignment) class Human: def __init__(self,car): self.eye=2 self.nose=1 self.car=car def eat(self): print("eat foods") def work(self): print("I can work") class Male: def __init__(self,name): self.name=name def first(self): print("first") def work(self): print("I write code") class Boy(Human,Male): def __init__(self,name,car,language): Male.__init__(self,name) Human.__init__(self,car) self.language=language super().__init__(car) def sleep(self): print("I can sleep") def work(self): print("I can test") def display(self): print(f"hi , i am {self.name} .i work on {self.language} language") boy_1=Boy('vishnu',1,'python') boy_1.display()
@alok_kr_verma
@alok_kr_verma Жыл бұрын
mam i think you forgot to upload the notes from 31sr lecture can you please provide us the notes.
@RahulGPT-A
@RahulGPT-A Жыл бұрын
Yes, please ma'am provide us, it's save our time😢
@Jai.Hind___
@Jai.Hind___ Жыл бұрын
Mam 🙏🙏 Is Quantum University is best for MCA 🙏 I am interested in MCA
@manoj89568
@manoj89568 Жыл бұрын
pls upload all the videos fast mam full complete course
@dabilover444
@dabilover444 Жыл бұрын
7:51 trick
@kiransivangi2650
@kiransivangi2650 Жыл бұрын
Mam u r looking pretty beautiful 😍😍😍
@beneelohimhub
@beneelohimhub Жыл бұрын
if we access the boy work method, in that case, it will print "I can Code". Because when it searches in the Human method, not finding the work method, it will search the next parent class, which in this case will be the Male class.
@PrasadraoRamala
@PrasadraoRamala Жыл бұрын
Mam how to clarify the doubt of this topic i am preparing for the semester exam
@bimanlama6912
@bimanlama6912 Жыл бұрын
Nice
@akilaprabath6284
@akilaprabath6284 Жыл бұрын
Madam, what are the best laptops for software engineer students
@Bruno77457
@Bruno77457 Жыл бұрын
Apple
@vaibhavpatharkar6794
@vaibhavpatharkar6794 Жыл бұрын
Jenny mam , may i know how many more lectures are going to come in python series. Because, i am making online notes. I will have to take print. If lectures get over , i will take the print out of all the python lectures completed till date
@JennyslecturesCSIT
@JennyslecturesCSIT Жыл бұрын
15-20 lectures
@vaibhavpatharkar6794
@vaibhavpatharkar6794 Жыл бұрын
@@JennyslecturesCSIT 15 to 20 lectures more. Ok. Teacher dhanyawad for reply. I thought you will not reply, since many people message you 👍
@fun_funny
@fun_funny 5 ай бұрын
12:50 I can code
@adityakhare7100
@adityakhare7100 15 күн бұрын
The answer will be "I can code".
@hoyna5963
@hoyna5963 Жыл бұрын
Hello Man, Can you please make a video on "Decorators in Python in details". I saw other videos in youtube but not getting clarified. THank you in Advance.
@relightgaming7155
@relightgaming7155 10 ай бұрын
i do have doubts in decorators then i saw video in code with harry and got a little clarity please suggest any other channel for more clarity
@harishhari3700
@harishhari3700 11 ай бұрын
It will print “i can code” from male class
@MayankSharma-ki8kj
@MayankSharma-ki8kj 11 ай бұрын
need sql seriesalso plz mam
@SUMANRAJ-fl9ey
@SUMANRAJ-fl9ey Жыл бұрын
Right 😅
@stars_____
@stars_____ Жыл бұрын
Please java lecture start soon
@vasujamdagni9379
@vasujamdagni9379 Жыл бұрын
Mam you are so cute❤️
@muneebbolo
@muneebbolo 9 ай бұрын
Quiz Answer: I can code
@adarshpandey9244
@adarshpandey9244 Жыл бұрын
Man, python kb tk khtm ho jaayega??aur kitne lecture hain?? Any idea
@Marvelkashmir
@Marvelkashmir Жыл бұрын
Well i wanna INHERIT your skills ❤❤❤❤ is that possible....
@Hindimideam123
@Hindimideam123 Жыл бұрын
Mam padhne apko dekhne ata hu bas
@ajitwalgaming4658
@ajitwalgaming4658 Жыл бұрын
1St comment😁
@n.kodanapani6787
@n.kodanapani6787 Жыл бұрын
👍
@vaibhavpatharkar6794
@vaibhavpatharkar6794 Жыл бұрын
1st to comment. Dhanyawad guruji for this non stop uninterrupted series of videos on python. Pl tell are you going to start SQL series. I will wait till then, becz i want to do sql from you , becz , you taught the OOPs very clear way. I am understanding it now. It was a hard topic for me. I think if you take sql it will also become easy, especially the advanced sql. Hence pl tell Yes or no? Jai Shree Raaam 🚩🚩🔥
@JennyslecturesCSIT
@JennyslecturesCSIT Жыл бұрын
No planning to start SQL right now... Jai shree Raam🙏
@vaibhavpatharkar6794
@vaibhavpatharkar6794 Жыл бұрын
@@JennyslecturesCSIT ok ji. No problem. But please start in future someday. By the way dhanyawad for all these videos Jai jai Shree Raam🚩
@leonelmessi7897
@leonelmessi7897 9 ай бұрын
I can code cuz mro()
@tejasree-gm6le
@tejasree-gm6le Жыл бұрын
Mam what about the notes
@subhashinichittemreddy8845
@subhashinichittemreddy8845 Жыл бұрын
I can code
@Shyambhajan317
@Shyambhajan317 Жыл бұрын
Reply toh diya nhi di apne meri problem ka ...?
@Smruti-t2t
@Smruti-t2t 10 ай бұрын
work methok in male class if no work in human and boy
@Haha_9i
@Haha_9i Жыл бұрын
Mam mai apko Main Channel pe Hindi padhane bol rha... reason apka subscribers 1.32M hai but views sirf K mai aa rha...it's mean English mai intrested ni hai lecture dekhna...or jo bacche maybe they know English or Show-off
@karumurisai9955
@karumurisai9955 7 ай бұрын
i can test
@avenger1898
@avenger1898 5 күн бұрын
i can code
@sanjuvmagilizhini
@sanjuvmagilizhini Жыл бұрын
1st like 1st comment I am fan of your work.. Plz pin me mam❤
@vaibhavpatharkar6794
@vaibhavpatharkar6794 Жыл бұрын
I did the assignment and it worked out . Dhanyawad teacher. 1 small suggestion, if it is possible, try to use Hindlish langauge in explaining the video. Becz even though my mother tongue is Marathi, hinglish ( mixture of both english + hindi) goes directly in the brain and the loss in transmission is zero.😂 Teacher , it is just a suggestion, but you know better in which lang to teach. 👍
@souravpaul344
@souravpaul344 Жыл бұрын
Whats ur age madam
@BalaMurugan-w7q
@BalaMurugan-w7q 4 ай бұрын
I can code
Multilevel Inheritance in Python | Python Tutorials for Beginners #lec91
21:11
Jenny's Lectures CS IT
Рет қаралды 34 М.
Inheritance in Python | Python Tutorials for Beginners #lec89
27:20
Jenny's Lectures CS IT
Рет қаралды 92 М.
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 120 МЛН
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
Hierarchical Inheritance in Python | Python Tutorials for Beginners #lec92
17:08
Jenny's Lectures CS IT
Рет қаралды 32 М.
File Handling in Python | Python Tutorials for Beginners #lec95
45:32
Jenny's Lectures CS IT
Рет қаралды 112 М.
Self and __init__() method in Python | Python Tutorials for Beginners #lec86
17:46
INHERITANCE(HIERARCHICAL,MULTIPLE) - PYTHON PROGRAMMING
21:00
Sundeep Saradhi Kanthety
Рет қаралды 48 М.
If __name__ == '__main__ ' in Python | Python Tutorials for Beginners #lec110
21:44
P_32 List in Python and List Functions | Python Tutorials for Beginners
29:01
Jenny's Lectures CS IT
Рет қаралды 187 М.
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 120 МЛН