Hierarchical Inheritance in Python | Python Tutorials for Beginners

  Рет қаралды 32,776

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

Пікірлер: 66
@tirumalavijaykumar4505
@tirumalavijaykumar4505 Жыл бұрын
I wish there is a lecture like u ma'am. If you are my lecture I would never bunk class again in life especially your class
@flipdruid
@flipdruid 7 ай бұрын
Just finished this lecture, thank you very much. This is a very big help for me, very clear explanation. moving to next lecture.
@GembaliLokesh
@GembaliLokesh Жыл бұрын
class person: def __init__(self,ear) -> None: self.ears=ear def read(self): print("i can read") def write(self): print("i can write") class student(person): def do(self): print("they can do") class faculty(person): def __init__(self, ear,leg) -> None: super().__init__(ear) self.legs=leg def correct(self): print("i can correct") sir=faculty(3,2) print(sir.ears)
@akshatsharma4688
@akshatsharma4688 7 ай бұрын
class human: def __init__(self,id): self.id = id self.homosepians = 1 class student(human): def __init__(self,id,branch): super().__init__(id) self.branch = branch class teacher(human): def __init__(self,id,subject): super().__init__(id) self.subject = subject s1 = student(1,'DS') print(s1.id) print(s1.homosepians) print(s1.branch) t1 = teacher(2,'MATHS') print(t1.id) print(t1.homosepians) print(t1.subject)
@Iamsrujan..
@Iamsrujan.. Жыл бұрын
We are missing your old and cute intro: " In the series of learning programming in C..." 😢❤
@g51661
@g51661 Жыл бұрын
In those days students also commented regarding studies more. Don't know kya ho gaya hai bacchon ko aajkal . 😢. I remember I studied online from her youtube lectures in my first year but ab pta nhi kyu bacche padhai se jyada faltu bate krte comment me . 😔
@Iamsrujan..
@Iamsrujan.. Жыл бұрын
@@g51661 sahi baat 😞🙏
@Marvelkashmir
@Marvelkashmir Жыл бұрын
Wanna inherit your skills ❤❤❤❤.
@akashrajendraprasad3717
@akashrajendraprasad3717 10 ай бұрын
thank you so much maam! You really make concepts very easy to grasp, love from Bengaluru!!
@Adritroy-mt8hz
@Adritroy-mt8hz 4 ай бұрын
I want to inherit your skill to see your all videos mam ...please pray for me .... Your teaching skill is amazing mam
@ramanyadav3185
@ramanyadav3185 Жыл бұрын
thanks for ur efforts MAAM.....love from REWARI HARYANA❤❤❤❤
@tecolote8566
@tecolote8566 7 ай бұрын
LADY, NICE EXPLANATION!!
@g51661
@g51661 Жыл бұрын
It is so disheartening to see behavior of students. There are many students who are not talking about topic being discussed in video but are doing stupidity in comments . So sad to see despite such good teaching by maam. 😢
@JinnahClaus
@JinnahClaus 7 ай бұрын
Its not disheartening its called cheap labour attitude
@codingworlds724
@codingworlds724 Жыл бұрын
Mam after completing python please continue with DSA in Python
@princereshav9964
@princereshav9964 Жыл бұрын
Was waiting for the next video
@wafahaiderjaffery
@wafahaiderjaffery Жыл бұрын
hello ma'am i'm following all of your lectures and it help me alot as a noob to understand programming. i'm practicing on C++ with your lecture they are excellent i tried to write you on insta but didnt get reply so i'm writing again on your current video lecture as i've seen you are responding to comments. i need your notes for revision and practice please if they are paid please let me know i'll pay the fee you're doing great for all and even personnel with zero programming knowledge undersrands your lectures and learning from the. I really appreciated your effort and hopes to get your support to develop my skills
@shirini8216
@shirini8216 Жыл бұрын
Hello, how can setattr() and getattr() be used?
@E-TechEducation
@E-TechEducation Жыл бұрын
Nice spectacle ma'am...
@mek059
@mek059 Жыл бұрын
Is it true that it's strange that the convention is to start class names with capital letter but in-built classes such as str are written str() instead of Str()
@tanishkprakashjaiswal6694
@tanishkprakashjaiswal6694 Жыл бұрын
Just the notification for the video popped up, and I've my end semester exam of Python tomorrow 😅😂
@rudrasenareddy
@rudrasenareddy Жыл бұрын
is it possible to get a job with python programming in Google, Facebook, Microsoft ..and also is it possible to solve Google like top MNC companies exams problems with python ?
@_ramen
@_ramen Жыл бұрын
00:01 great vid
@ayushsankrit6300
@ayushsankrit6300 Жыл бұрын
Ma'am , I am not getting the Assignment. Can you please write the question in the description? 😊
@RajBirendra-j4i
@RajBirendra-j4i Жыл бұрын
Hello mam....... Advanced java ka video nahi banaya haii aapne
@sujatha291
@sujatha291 Жыл бұрын
Mam what is your hp laptop model
@mrkirangamingyt2030
@mrkirangamingyt2030 Жыл бұрын
Mam tell me that which college u are teaching i want to join
@bhautikhirpara007
@bhautikhirpara007 3 ай бұрын
class Person(object): def __init__(self,ear,eye): self.num_ear=ear self.num_eye=eye def eat(self): print("I can eat") def show_details(self): print(f"I am person. and ear : {self.num_ear} , eye : {self.num_eye}") class Student(Person): def __init__(self,ear,eye,assignment): Person.__init__(self,ear,eye) self.assignment=assignment def learn(self): print("I can learn") def student_detail(self): super().show_details() print(f"My assignment is : {self.assignment}") class Teacher(Person): def __init__(self,ear,eye,task_check): Person.__init__(self,ear,eye) self.task_checking=task_check def teach(self): print("I can teach") def teacher_detail(self): super().show_details() print(f"I have checked assignment : {self.task_checking}") man_1=Person(2,3) print(man_1.num_eye) print(man_1.num_ear) man_1.eat() man_1.show_details() stu1=Student(2,3,True) print(stu1.num_ear) print(stu1.num_eye) stu1.learn() stu1.student_detail() sir1=Teacher(2,3,True) print(sir1.num_ear) print(sir1.num_eye) sir1.teach() sir1.teacher_detail()
@ANKITKUMAR-dq8bk
@ANKITKUMAR-dq8bk Жыл бұрын
thanks
@krazzzyminati7599
@krazzzyminati7599 Жыл бұрын
Mam aap khule balon me acchi lagti ho😊
@Rintu_creation
@Rintu_creation Жыл бұрын
Hlo mam...constructor, Destroctor, INHERITANCE..... plz VDO ispe kariye 🙏 C++
@vaibhavpatharkar6794
@vaibhavpatharkar6794 Жыл бұрын
Teacher, i have a doubt. In Male you used __init__() to access the Human class. Then why you use super() func in female class to access the Human class, instead of __init__()
@abhileswar
@abhileswar 10 ай бұрын
you can use anyone to access from parent class
@mokhamatamsivavlogs
@mokhamatamsivavlogs Ай бұрын
There are two types of accessing right so that madam used both cases that's all
@shubhamoybose5517
@shubhamoybose5517 Жыл бұрын
Mam please make video on find different depth first tress from a graph using DFS Algorithm. Please maam make a video on this please 🥺🥺🥺🥺🥺🥺
@suryachowdary8759
@suryachowdary8759 4 ай бұрын
08:44🤣🤣
@spdubey7910
@spdubey7910 Жыл бұрын
Insta se aaya hu mam ❤
@JinnahClaus
@JinnahClaus 7 ай бұрын
udr kya bund de rha tha
@vaibhavpatharkar6794
@vaibhavpatharkar6794 Жыл бұрын
Thaank you teacher, for this video. Jai Shree Raam 🚩
@RituraniDivekar
@RituraniDivekar Жыл бұрын
Are you on unacademy mam please reply
@ashutoshranjan4431
@ashutoshranjan4431 Жыл бұрын
Miss sahmaj nahi aa raha hei Kay Karu miss
@Oneplusone-lu5vc
@Oneplusone-lu5vc Жыл бұрын
Rehendo phir 😂
@souravsingh3145
@souravsingh3145 Жыл бұрын
Mam python pr focus Jaa hi nhi rha hai 🥲
@sujalkumar1033
@sujalkumar1033 Жыл бұрын
Insta pe reel dekh ke aya hu😂
@HamzaAli-vs9tb
@HamzaAli-vs9tb Жыл бұрын
Why don't you start with java??
@JinnahClaus
@JinnahClaus 7 ай бұрын
tune salah nhi di thi abhi tk bhai isilie shayad shuru nhi ki
@sourabhbisht17
@sourabhbisht17 Жыл бұрын
Aap pe edit bnne lage hai.
@JennyslecturesCSIT
@JennyslecturesCSIT Жыл бұрын
🤔
@dhanunjayal4253
@dhanunjayal4253 Жыл бұрын
Hi mam I love you
@Oneplusone-lu5vc
@Oneplusone-lu5vc Жыл бұрын
Ayo what the 💀
@satyamanideep9952
@satyamanideep9952 Жыл бұрын
Hello mam
@sigma00894
@sigma00894 Жыл бұрын
Love you mam🥲❤️😭
@pavankumaronlineworld8694
@pavankumaronlineworld8694 Жыл бұрын
Mam aapki shadhi ho gyi kya ??
@Oneplusone-lu5vc
@Oneplusone-lu5vc Жыл бұрын
😂😂😂
@maurya.pcvishal
@maurya.pcvishal Жыл бұрын
Kya pada rahi hia python me
@Mahesh.k.v6648
@Mahesh.k.v6648 Жыл бұрын
Hii mam
@krishnarajraj756
@krishnarajraj756 Жыл бұрын
Bawal
@imranrmd1552
@imranrmd1552 Жыл бұрын
Hindi Mae batao
@Bikral125-op6zw
@Bikral125-op6zw Жыл бұрын
Aapko dekh kar do Shaadi karne ka man kar raha hai❤❤❤❤❤❤❤❤❤❤❤❤
@JinnahClaus
@JinnahClaus 7 ай бұрын
musalmaan bn ja firr wahin apni behan se bhi kr lio 3 ho jaaegi
@maurya.pcvishal
@maurya.pcvishal Жыл бұрын
Hii mam
Hybrid Inheritance in Python | Python Tutorials for Beginners #lec93
10:45
Jenny's Lectures CS IT
Рет қаралды 32 М.
Multilevel Inheritance in Python | Python Tutorials for Beginners #lec91
21:11
Jenny's Lectures CS IT
Рет қаралды 34 М.
Sigma Kid Mistake #funny #sigma
00:17
CRAZY GREAPA
Рет қаралды 30 МЛН
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 31 МЛН
When you have a very capricious child 😂😘👍
00:16
Like Asiya
Рет қаралды 18 МЛН
pip & PyPI in python | Packages in Python | Python Tutorials for Beginners #lec108
19:56
Multiple Inheritance in Python | Python Tutorials for Beginners #lec90
27:46
Jenny's Lectures CS IT
Рет қаралды 44 М.
What is Duck typing in Python
7:36
Gyanipandit Geeky - Hindi
Рет қаралды 626
Abstraction in Python | Python OOP Concepts| Python Tutorials for Beginners #lec98
16:06
File Handling in Python | Python Tutorials for Beginners #lec95
45:32
Jenny's Lectures CS IT
Рет қаралды 112 М.
Inheritance in Python | Python Tutorials for Beginners #lec89
27:20
Jenny's Lectures CS IT
Рет қаралды 92 М.
Types of Arguments in Python | Python Tutorials for Beginners #lec61
21:11
Jenny's Lectures CS IT
Рет қаралды 104 М.
Sigma Kid Mistake #funny #sigma
00:17
CRAZY GREAPA
Рет қаралды 30 МЛН