Multiple Inheritance in Python | Python Tutorials for Beginners

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 พ.ย. 2024

ความคิดเห็น • 76

  • @Manoj_Singh1205
    @Manoj_Singh1205 ปีที่แล้ว +10

    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.💐

  • @happy6835
    @happy6835 ปีที่แล้ว +6

    12:51 It will print male class work function because it will search in mro order.

  • @abinayas0029
    @abinayas0029 ปีที่แล้ว +14

    12:38 Answer for the quiz:
    I can code

  • @flipdruid
    @flipdruid 6 หลายเดือนก่อน

    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.

  • @flipdruid
    @flipdruid 6 หลายเดือนก่อน +1

    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.

  • @FunCorner5332
    @FunCorner5332 5 หลายเดือนก่อน

    Always special , Great job thanks Jenny for your knowledge and effort.

  • @saisudheshna763
    @saisudheshna763 4 หลายเดือนก่อน

    Thank You So Much Madam For Your Wonderful Efforts

  • @BN-hy1nd
    @BN-hy1nd ปีที่แล้ว +1

    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

  • @vaibhavpatharkar6794
    @vaibhavpatharkar6794 ปีที่แล้ว +1

    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.
    😊

  • @mulasravani5618
    @mulasravani5618 8 หลายเดือนก่อน +1

    I can test ....it will print ....bcoz first it will check its own class ....

  • @exploretheworld.0155
    @exploretheworld.0155 9 หลายเดือนก่อน

    Thank you for a such wonderful lectures

  • @shri10100
    @shri10100 ปีที่แล้ว +14

    Day by day you are you are becoming more beautiful ma'am ❤

    • @hitlarkapadosi
      @hitlarkapadosi ปีที่แล้ว +1

      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 ปีที่แล้ว +9

      ​@@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 ปีที่แล้ว +1

      Aap kaha the gyani baba 🙏

  • @saikiran2023
    @saikiran2023 ปีที่แล้ว +1

    Madam ur lectures are super
    Pls upload videos on c++ tutorial

  • @talhashah3986
    @talhashah3986 3 หลายเดือนก่อน

    ThankYou So Much Mam!

  • @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

  • @relightgaming7155
    @relightgaming7155 9 หลายเดือนก่อน

    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"

  • @kolasanisirisha5534
    @kolasanisirisha5534 ปีที่แล้ว +1

    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.🙏🙏🙏

  • @Lucky_truth
    @Lucky_truth ปีที่แล้ว +1

    little confusion??
    go fresh your mind
    watch from begining 🙂

  • @Jai.Hind___
    @Jai.Hind___ ปีที่แล้ว +2

    Mam 🙏🙏 Is Quantum University is best for MCA 🙏
    I am interested in MCA

  • @ultimatemanchanti
    @ultimatemanchanti ปีที่แล้ว

    Beautiful concepts for python
    I want detail material and job reference

  • @brabhijith-vp7he
    @brabhijith-vp7he 10 หลายเดือนก่อน

    Ma'am please continue os playlist 🙏

  • @manojmadival8635
    @manojmadival8635 ปีที่แล้ว +1

    pls upload all the videos fast mam full complete course

  • @NARENDRAPAGOTI
    @NARENDRAPAGOTI ปีที่แล้ว +3

    mam plese start java for us or plz give us an update when your going to start it

  • @nageshdeva8936
    @nageshdeva8936 10 หลายเดือนก่อน +2

    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.

  • @VishalYadav-en5mx
    @VishalYadav-en5mx ปีที่แล้ว +2

    Please suggest me which language is better for DSA

  • @vishnumuraly18
    @vishnumuraly18 11 หลายเดือนก่อน

    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()

  • @shivakrishna_varma9658
    @shivakrishna_varma9658 หลายเดือนก่อน

    12:50 It will print
    I can code

  • @alok_kr_verma
    @alok_kr_verma ปีที่แล้ว +3

    mam i think you forgot to upload the notes from 31sr lecture can you please provide us the notes.

    • @RahulGPT-A
      @RahulGPT-A ปีที่แล้ว +1

      Yes, please ma'am provide us, it's save our time😢

  • @bimanlama6912
    @bimanlama6912 ปีที่แล้ว

    Nice

  • @PrasadraoRamala
    @PrasadraoRamala 11 หลายเดือนก่อน

    Mam how to clarify the doubt of this topic i am preparing for the semester exam

  • @beneelohimhub
    @beneelohimhub ปีที่แล้ว +1

    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.

  • @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  ปีที่แล้ว +1

      15-20 lectures

    • @vaibhavpatharkar6794
      @vaibhavpatharkar6794 ปีที่แล้ว +1

      @@JennyslecturesCSIT 15 to 20 lectures more. Ok. Teacher dhanyawad for reply. I thought you will not reply, since many people message you
      👍

  • @vaibhavpatharkar6794
    @vaibhavpatharkar6794 ปีที่แล้ว +5

    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  ปีที่แล้ว +4

      No planning to start SQL right now...
      Jai shree Raam🙏

    • @vaibhavpatharkar6794
      @vaibhavpatharkar6794 ปีที่แล้ว +1

      @@JennyslecturesCSIT ok ji. No problem. But please start in future someday.
      By the way dhanyawad for all these videos
      Jai jai Shree Raam🚩

  • @harishhari3700
    @harishhari3700 10 หลายเดือนก่อน

    It will print “i can code” from male class

  • @akilaprabath6284
    @akilaprabath6284 ปีที่แล้ว +1

    Madam, what are the best laptops for software engineer students

    • @Bruno77457
      @Bruno77457 11 หลายเดือนก่อน

      Apple

  • @Marvelkashmir
    @Marvelkashmir ปีที่แล้ว +2

    Well i wanna INHERIT your skills ❤❤❤❤ is that possible....

  • @dabilover444
    @dabilover444 10 หลายเดือนก่อน

    7:51 trick

  • @hoyna5963
    @hoyna5963 11 หลายเดือนก่อน +1

    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 9 หลายเดือนก่อน +1

      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

  • @muneebbolo
    @muneebbolo 7 หลายเดือนก่อน

    Quiz Answer:
    I can code

  • @SUMANRAJ-fl9ey
    @SUMANRAJ-fl9ey ปีที่แล้ว

    Right 😅

  • @adarshpandey9244
    @adarshpandey9244 ปีที่แล้ว

    Man, python kb tk khtm ho jaayega??aur kitne lecture hain?? Any idea

  • @stars_____
    @stars_____ ปีที่แล้ว

    Please java lecture start soon

  • @MayankSharma-ki8kj
    @MayankSharma-ki8kj 9 หลายเดือนก่อน

    need sql seriesalso plz mam

  • @kiransivangi2650
    @kiransivangi2650 ปีที่แล้ว

    Mam u r looking pretty beautiful 😍😍😍

  • @n.kodanapani6787
    @n.kodanapani6787 ปีที่แล้ว

    👍

  • @Hindimideam123
    @Hindimideam123 ปีที่แล้ว

    Mam padhne apko dekhne ata hu bas

  • @fun_funny
    @fun_funny 4 หลายเดือนก่อน

    12:50 I can code

  • @ajitwalgaming4658
    @ajitwalgaming4658 ปีที่แล้ว

    1St comment😁

  • @leonelmessi7897
    @leonelmessi7897 7 หลายเดือนก่อน

    I can code cuz mro()

  • @subhashinichittemreddy8845
    @subhashinichittemreddy8845 ปีที่แล้ว +1

    I can code

  • @tejasree-gm6le
    @tejasree-gm6le ปีที่แล้ว

    Mam what about the notes

  • @Shyambhajan317
    @Shyambhajan317 ปีที่แล้ว

    Reply toh diya nhi di apne meri problem ka ...?

  • @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 6 หลายเดือนก่อน

    i can test

  • @vasujamdagni9379
    @vasujamdagni9379 ปีที่แล้ว

    Mam you are so cute❤️

  • @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. 👍

  • @Smruti-t2t
    @Smruti-t2t 8 หลายเดือนก่อน

    work methok in male class if no work in human and boy

  • @sanjuvmagilizhini
    @sanjuvmagilizhini ปีที่แล้ว

    1st like 1st comment I am fan of your work.. Plz pin me mam❤

  • @souravpaul344
    @souravpaul344 ปีที่แล้ว

    Whats ur age madam

  • @BalaMurugan-w7q
    @BalaMurugan-w7q 3 หลายเดือนก่อน

    I can code