Abstract Class and Abstract Method in Python

แชร์
ฝัง

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

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

    Summary:
    abstract method is a method which only has declaration and doesn't have definition.
    a class is called abstract class only if it has at least one abstract method.
    when you inherit a abstract class as a parent to the child class, the child class should define all the abstract method present in parent class.
    if it is not done then child class also becomes abstract class automatically.
    at last, python by default doesn't support abstract class and abstract method, so there is a package called ABC(abstract base classes) by which we can make a class or method abstract.

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

      Dude... thank you! Very clear.

    • @共匪必须被消灭
      @共匪必须被消灭 3 ปีที่แล้ว +3

      Love you, Dude

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

      thank you

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

      thanx bro

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

      10 minutes video is awesome, 1 minute read paragraph is bravo!

  • @sujithkumar_ga
    @sujithkumar_ga 4 ปีที่แล้ว +47

    for those who did not understand! assume a situation or an example (u r given a task to design some apps and an app to qualify it must and should contain some specific features like( brightness, notification ).so basically you can declare an abstract class with these feature declarations( brightness, notification ), but not the body in the abstract class and later u inherit them keeping in mind that while you are designing you must and should declare these feature's body for sure along with some more features and u might use the same abstract class for other app design because even it must also contain the specific features along with other, but the body declarations might change from class to class or an app to app if you are doing any real-time work).
    hope u understood this

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

    I see many are still confused with the concept and also with "how is it different from duck typing". Here is an example to get it cleared.
    This is an exam 'hall' and there are students from 2 diffrent 'classes' seated. Class A has a maths test, Class B has social.
    The invigilator says that to enter the hall, every one must carry an instrument box. Now students of classes both A and B must bring one even if B class don't have its use. So the class A will have a set of compass, rulers, pencils etc in it. But since students of class B don't have any use, they will just bring one with a pencil or even just empty (pass) because its compulsory to bring one in to be in the hall.
    If a parent class has an abstract method, every child must also have one. So each child will have to define one of thier own.
    In duck typing, It isn't necessary to define the parent class method for each child classes. it just simply have to point to the class where the particular method lies. Here we would have to define for each.
    I hope this helps

    • @Vishal360
      @Vishal360 2 ปีที่แล้ว

      Daymnnn 🤝🏻

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

      Ok that was a clear explanation bro thanks now i understand its use

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

    Essentially, you define abstract methods in an abstract class to ensure that it's child classes have a compulsion of having those methods defined inside them

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

      Otherwise, the abstract method that is inherited by the child will make it an Abstract Base class thus preventing instantiation. So if we are to instantiate the child class, implementing the abstract methods becomes necessary.

    • @kunalpandey2066
      @kunalpandey2066 2 ปีที่แล้ว

      we can find its usecase in design patterns

    • @pranavnyavanandi9710
      @pranavnyavanandi9710 2 ปีที่แล้ว

      @@kunalpandey2066 Hi. Can you elaborate? Design patterns for designing what?

    • @l3tt3rsnumbers0nly
      @l3tt3rsnumbers0nly 2 ปีที่แล้ว

      this explanation makes me understand its use i guess.

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

      It's best to use, when we use polymorphism.

  • @qazafisheikh530
    @qazafisheikh530 4 ปีที่แล้ว +161

    it was soooo confusing

    • @VishuencApp
      @VishuencApp 4 ปีที่แล้ว +4

      Yes, not explained with good examples and details.

    • @_.sunnyraj._
      @_.sunnyraj._ 4 ปีที่แล้ว

      No

    • @sujithkumar_ga
      @sujithkumar_ga 4 ปีที่แล้ว +33

      for those who did not understand! assume a situation or an example (u r given a task to design some apps and an app to qualify it must and should contain some specific features say brightness, notification .so basically you can declare an abstract class with these feature declarations but not the body and later u inherit them in keeping in mind that while design you must and should declare these feature's body for sure along with some more features and u might use the same abstract class for other app design because even it must also contain the specific features along with other but the body declarations might change from class to class or an app to app if you are doing any real-time work).
      hope u understood this

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

      @@sujithkumar_ga So I'm still trying to wrap my head around this. From what I'm seeing, using this video as the example, we declare process in the Computer class as an abstract method and therefore we get an error and to fix that error, we override it in a subclass, say Laptop, by redefining process. So then why even bother with the abstract method at all? Making the abstract method just seems like a waste of time if it's not going to do anything and I have to add the actual definition somewhere else.

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

      @@vernanonix u will get to know better when u do real time projects 👍

  • @sameernayak9611
    @sameernayak9611 4 ปีที่แล้ว +78

    This video is quite confusing sir, can you please make one more so that we can understand this concept better.

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

      Actually the video is very concise and clear

    • @_.sunnyraj._
      @_.sunnyraj._ 4 ปีที่แล้ว

      @@hyperskivo8426 yes

    • @alwayslakshmipathi2532
      @alwayslakshmipathi2532 4 ปีที่แล้ว

      yeah... I felt irritated

    • @ArjunKrishna-lx1re
      @ArjunKrishna-lx1re 3 ปีที่แล้ว

      @@hyperskivo8426 then tell me, why we need abstract class

    • @anindian4601
      @anindian4601 3 ปีที่แล้ว

      @@ArjunKrishna-lx1re 🤣 Good question bro, I Think Navin has missing some logics and codes better we have to refer other utubers too , dont rely on him.

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

    no teacher teaches me that whiteboard example to explain the concept of abstraction,, your a genius sir..

  • @md.anisurrahman1856
    @md.anisurrahman1856 3 ปีที่แล้ว +9

    Probably need more explanation about this topic. Why we need to create abstract classes. But among all of the youtube videos, this is much much better than others. Thank you...

    • @KeremAli-cm3pj
      @KeremAli-cm3pj 4 หลายเดือนก่อน

      buddy, this is the best option we have...
      and thats not a compliment.

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

    Respected and honourable sir ,i have been learning python from scratch only on your TH-cam channel.

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

    You just implemented the exact thing that my teacher taugh me in my Object Oriented Design lecture...
    Thank you so much for the video.....❤

  • @AmirKhan-zy9qc
    @AmirKhan-zy9qc 4 ปีที่แล้ว +7

    Actually, the function of the abstract class is the programmer shouldn't be able to use a class and its method but he has to provide those methods and its definition to other inheriting classes. By using such a feature the programmer is forcing himself to provide different definitions in inheriting classes. Here what Navin is trying to say is all electronics like laptops desktops and mobiles are computers so the programmers must define all the parts like display and processor to all electronics like laptops desktops and mobiles because without such part they won't work

    • @samgaines2886
      @samgaines2886 2 ปีที่แล้ว

      Thanks for this. Understood the concept but didn’t really get the “why.” This helps

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

    1. Abstract base class desire its subclass or child class to instantiate the class object by inheriting its base class.
    2. ABC methods require to its proceeding methods in a subclass to add the functionality.
    3. ABC just def the methods but all its functionality will be designed by a subclass.
    4. ABC customize the behaviour of isinstance() and issubclass()

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

    Can you please explain more on why do we need abstract classes? It's not very clear to me.
    This will be really helpful. Thanks!

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

      It's a Object Oriented Programming thing. Maybe you are designing many classes and these classes share a common method (in teacher's example is processing(), so each time you inherit in a new class e.g. Laptop, it is mandatory/compulsory that you define processing() method there. I think it is a way to keep organized your OOP project.

    • @mevlutkaymaz3097
      @mevlutkaymaz3097 3 ปีที่แล้ว

      When you have can possible have multiple(different) output/input, then you will need to create a base class(or abstract class) to use for multiple objects.

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

      Simply, to follow a specific strict structure for the development of functionality.

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

    Doubt
    from abc import ABC,abstractmethod
    class Computer(ABC):
    @abstractmethod
    def process(self):
    pass
    class Whiteboard(Computer):
    def write(self):
    print("Writing")
    class Laptop:
    def solve(self,com):
    print("solving")
    com.process()
    com1=Whiteboard()
    s=Laptop()
    s.solve(com1)
    "F:\PYthon oo\venv\Scripts\python.exe"
    Traceback (most recent call last):
    com1=Whiteboard()
    TypeError: Can't instantiate abstract class Whiteboard with abstract methods process

    • @deepakreddyt
      @deepakreddyt 4 ปีที่แล้ว

      you mean that if i use Whiteboard(Computer)
      i must have process method in white board class so that only code works is n't ???
      thats the use of abstract class
      i hope you will reply soon.......

  • @revolutionaryaihub-aonesto5228
    @revolutionaryaihub-aonesto5228 4 ปีที่แล้ว +78

    Thanks a lot sir...please complete data structures and algorithms with python...and if possible start machine learning/data science..as u were telling earlier u we're about to start ...

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

    from abc import *
    class examhall:
    @abstractmethod
    def instrument_box(self):
    pass
    #'bring instrument box'
    def water_bottle(self):
    print('bring water bottle')
    class students1(examhall):
    def maths(self):
    print('ok, i sure need one for the test')
    #so let me define an instument box
    def instrument_box(self):
    print('pencils, compass, ruler etc')
    class students2(examhall):
    def social(self):
    print('but i dont need one anyway')
    #but since its compulsory, let me bring an empty one
    def instrument_box(self):
    print('empty box') #or just pass
    s1 = students1()
    s2 = students2()
    s1.maths()
    s1.instrument_box()
    s2.social()
    s2.instrument_box()

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

    By the defination, abstraction is used to hide complexity of program but this defination doesn't seems appropriate in python implementation of abstraction.

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

    For those if didnt understood properly go through below code
    from abc import ABC, abstractmethod
    class Shape(ABC):
    @abstractmethod
    def area(self):
    pass

    @abstractmethod
    def perimeter(self):
    pass
    class Circle(Shape):
    def __init__(self, radius):
    self.radius = radius

    def area(self):
    return 3.14 * self.radius**2

    def perimeter(self):
    return 2 * 3.14 * self.radius
    class Square(Shape):
    def __init__(self, side):
    self.side = side

    def area(self):
    return self.side**2

    def perimeter(self):
    return 4 * self.side
    1) here trying to directly instantiate shape will directly result in error as it is defined by abstract
    2) here we have declared the area, perimeter as abstract , so any class that inherits shape class were forced to define those methods (or ) will result in error....reason why i did this is for any shape, ie square, rectangle, circle....calculating area and perimeter are important.

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

    It had taken me 1 hr to properly understand this one....but finally i felt the example was cool. Thank you Sir.

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

    "If you can't explain a topic, you never understood it well" ~~ Someone

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

    Thanks for making such helpful video for learners. But I either was not able to understand the ABC concept of class & method by watching this video or video missed the good example of this. Thanks to chatGPT it gave me below real world example which explains the concept really well.
    e.g. a vehicle might have common attributes like speed, fuel, and methods like start(), stop(), and accelerate(). However, different types of vehicles (e.g., car, motorcycle, truck) might have different implementations for these methods.
    1. Vehicle is an abstract base class defining a common interface for all vehicles, with abstract methods like start(), stop(), and accelerate().
    2. Car, Motorcycle, and Truck are concrete subclasses of Vehicle, each providing its own implementation for the abstract methods.
    3. Each subclass can have its own specific attributes and methods, but they all must implement the methods defined in the Vehicle base class.
    below is the code.....
    from abc import ABC, abstractmethod
    class Vehicle(ABC):
    def __init__(self, speed=0, fuel=100):
    self.speed = speed
    self.fuel = fuel
    @abstractmethod
    def start(self):
    pass
    @abstractmethod
    def stop(self):
    pass
    @abstractmethod
    def accelerate(self):
    pass
    class Car(Vehicle):
    def start(self):
    print("Car started")
    def stop(self):
    print("Car stopped")
    def accelerate(self):
    print("Car accelerating")
    class Motorcycle(Vehicle):
    def start(self):
    print("Motorcycle started")
    def stop(self):
    print("Motorcycle stopped")
    def accelerate(self):
    print("Motorcycle accelerating")
    class Truck(Vehicle):
    def start(self):
    print("Truck started")
    def stop(self):
    print("Truck stopped")
    def accelerate(self):
    print("Truck accelerating")
    car = Car()
    car.start()
    car.accelerate()
    car.stop()
    motorcycle = Motorcycle()
    motorcycle.start()
    motorcycle.accelerate()
    motorcycle.stop()
    truck = Truck()
    truck.start()
    truck.accelerate()
    truck.stop()

  • @NoorAli-uu9wk
    @NoorAli-uu9wk 2 ปีที่แล้ว

    Absolutely Brilliant Video! Thanks

  • @yes_i_am8378
    @yes_i_am8378 4 ปีที่แล้ว +11

    where is your energy man in this tutorial?
    Btw, U r awesome...

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

    Respected and honourable sir ,i have been learning python from scratch only on your TH-cam channel.
    I wanna thank you from bottom of my heart.Till now i didn't face any problem or confusion.but now i was Little bit confused about the abstract class, why do we use and why do we need them.
    ***I have come up with a conclusion that : we use abstract classes and abstract method to override the abstract method again and again in other subclasses of abstract class.***
    If it is correct? kindly reply.Big fan sir❤️...God bless you

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

    Please make videos on Python Projects

  • @alonsom.donayre1992
    @alonsom.donayre1992 4 ปีที่แล้ว +4

    Sorry i cant understand very well what u said about when is useful to use an abstract classs only with abstract methods? can you answer me that please

  • @charlesalmadi9665
    @charlesalmadi9665 3 ปีที่แล้ว

    4:50 I expect it to work, because we are creating an object of a concrete rather than abstract class

  • @Techwithgk369
    @Techwithgk369 4 ปีที่แล้ว +4

    nice explanation in udemy

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

    Ok so if you need to create multiple class objects which all have something in common and which you need to imperatively implement because you will later need to call (such as obj.process() in this video), then you use an ABC class and enforce the child classes to all have the set of methods you want. That's what I understand.

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

    The concept is actually tough to understand here if we don't have basic understanding of Java abstract class.. But very nicely explained. ❤🎉

    • @temporarychannel4339
      @temporarychannel4339 2 ปีที่แล้ว

      This vid isn't clear at all. I only understood b/c I know abstract classes from C++, only then did I understand overriding abstract methods in child classes. Otherwise, the explanation is very unclear but he did show how to create and override abstract classes/methods at least using the custom library.

  • @Sharukkhan-kx9rw
    @Sharukkhan-kx9rw 4 ปีที่แล้ว +1

    Could you try different examples like Pizza, Burger instead of the Computer, please?

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

    I am pretty much sure I have missed something, but I am not sure what it is.At 5:11 - I got the concept that if you inherit an Abstract class, the child class will also be Abstract. That I understood, tried and was successful.
    But didn't properly get the concept after that. If the parent class is an Abstract Class, and if the child class has its own methods, the methods of the child class run without a problem. Have I got it right?

  • @Arunava_Sar
    @Arunava_Sar 4 ปีที่แล้ว

    Actually I think abstract class and method is under the concept of method overriding and concept of inner class ..the commenters are confusing because of telusco didn't give any episode number or didn't connect with previous video because of it was uploaded in 2020 I think 😅

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

    Many many thanks for posting the missed leathers of python. We are waiting for it👌👌👌👌😋😋

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

    super cool!😺

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

    wonderful sir, great tutorial, thank you

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

    Sir Assalam o alikum,
    i am watching your videos on blockchain and
    i am really very impressed how you explain everything in detail i have a question
    In hyperledger fabric there are 2 ways to reach consensus endosers and orders. What i am asking is who are endosers if they are admins Doesnt it make hyperledger centralized? Can i be an endoser?

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

    Very informative video. I have one doubt. I don't agree with this statement - "An abstract method is a method that has a declaration but does not have a definition."
    We can define the abstract method and use it later with super function. Right?

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

    nice

  • @gopalakrishnadoddi4869
    @gopalakrishnadoddi4869 4 ปีที่แล้ว

    Sir your specticulars are nice today

  • @muddasarajmal2454
    @muddasarajmal2454 2 ปีที่แล้ว

    Great explaination, but can you please differentiate between inheritance and abstraction. Anyone can answer to it to spread knowledge. Thanks.

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

    excellent sir

  • @nemesis_rc
    @nemesis_rc 3 ปีที่แล้ว

    Previous background was waaaayyyyyy better

  • @cosmicchild7182
    @cosmicchild7182 3 ปีที่แล้ว

    Good Explanation !

  • @sreetechx2954
    @sreetechx2954 4 ปีที่แล้ว +4

    "interfaces" module will more good representation than abc module....

  • @SwapnadeepMukherjee
    @SwapnadeepMukherjee 3 ปีที่แล้ว

    @4:38 : No, it won't work. The class that inherits an abstract class is also an abstract class and can't be instantiated.

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

    Why does this code show an error
    from abc import ABC, abstractmethod
    class Computer(ABC):
    @abstractmethod
    def process(self):
    pass
    class Laptop(Computer):
    def process(self):
    print("Running")
    class Whiteboard(Computer):
    def write(self):
    print("Writing")
    class Program:
    def work(self, com):
    print("Working")
    com.process()
    c1 = Laptop()
    c2 = Whiteboard()
    p1 = Program()
    p1.work(c1)
    p1.work(c2)
    You didn't show the output after you changed whiteboard as a child class.

  • @शुभमपाठक-र6ल
    @शुभमपाठक-र6ल 4 ปีที่แล้ว +1

    nothing understood during the last part of video please make a video on this again

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

    Sir, could you do future videos on how to pass python certificiations, specifically the PCPP (Python institute professional certfied). By the way, brilliant instruction. Thanks

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

    Please make lectures on Data Analytics and ML

  • @MDIMRAN-ze3rj
    @MDIMRAN-ze3rj ปีที่แล้ว

    What are the benefits of Abstract class?
    Why do we use it ??

  • @indreeshpandey343
    @indreeshpandey343 4 ปีที่แล้ว

    sir please bring up a series of python for intermediate

  • @gauravtalwar358
    @gauravtalwar358 4 ปีที่แล้ว

    Need more clarity on Abstract Class and Methods

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

    Thank You So Much Sir.

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

    Can we expect a video, explaining Django 3.0 new features..? and advance stuff like cookies and sessions in Django.?

    • @amanagrawal003
      @amanagrawal003 4 ปีที่แล้ว

      yes i have exact same question

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

    sir...please makes video on data structures and algorithms with python please please

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

    This video made me realize the significance of duck typing.

    • @JIT100TV
      @JIT100TV 4 ปีที่แล้ว

      Yea ikr. I didnt get what is abs is tbh with this video. it feels like extension of Duck typing video

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

    Sir , make a video on metaclass, why it is used and implementation details..

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

    Sir it's confusing 😐😐 please make another video for abstract classes and methods 🙏🙏 @Telusko

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

    Your grate sir thank so much

  • @rawatshubham09
    @rawatshubham09 3 ปีที่แล้ว

    Abstract class sounds like" Copy right of you tube" where u need to "give credit" by defining all abstract methods of parent class

  • @abhilashk2534
    @abhilashk2534 3 ปีที่แล้ว

    Please add video for encapsulation concept(__x) to restrict input.
    Thanks!

  • @RajaMuruganV.S
    @RajaMuruganV.S 4 หลายเดือนก่อน

    Bye Bye is an emotion ❤

  • @bish09
    @bish09 4 ปีที่แล้ว

    Under the class whiteboard. It should be process(self) not write to run the programme.

  • @saddamahmad2310
    @saddamahmad2310 4 ปีที่แล้ว

    thank you very much sir for this video

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

    Sir, please make video on data structure and algorithm in python

  • @dingdingding8697
    @dingdingding8697 3 ปีที่แล้ว

    For the first time I'm confused 🙂 ...can you please explain it deeply... It's not clear why should we need abstract class and methods

  • @piyasidey2117
    @piyasidey2117 4 ปีที่แล้ว

    Sir please make another video about abstraction class and method..it's too confusing.

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

    I don't think so it's gonna work

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

    so basically an abstract class and method is a way to force child classes into having certain methods

  • @pawnage3
    @pawnage3 3 ปีที่แล้ว

    Thank you very much!

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

    wait ! what? you called me alien? i liked though

  • @_.sunnyraj._
    @_.sunnyraj._ 4 ปีที่แล้ว

    I heard goosebumps in whole video
    Was it only me

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

    as we are inheriting computer from abc, and laptop from computer
    its kinda like, multilevel inheritance, so...same error might repeat because laptop inherits computer which has an abstract method
    does inheriting an abstract class make the derived class, also an abstract class?

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

    Thanks for making easy, understanding videos on python. But this one was a bit confusing for non IT people like me!!! Anyways thanks :-)

  • @noobygeeko
    @noobygeeko 4 ปีที่แล้ว

    Thanks sir for working for us

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

    Did he just call me an alien?

  • @umarshaikh1952
    @umarshaikh1952 4 ปีที่แล้ว

    We can not create the object of laptop class because inside the laptop class is abstract method if we create the object of abstract so we will get the error

  • @dillibabu1472
    @dillibabu1472 3 ปีที่แล้ว

    Put another video based on this topic sir it's only 70%clear

  • @antimghosh7208
    @antimghosh7208 4 ปีที่แล้ว

    plzz make a series on REST API details on python with a hands-on project

  • @athirap8862
    @athirap8862 4 ปีที่แล้ว

    Can you make a video on infrastructure automation using powershell and python

  • @prashantkumargautam4191
    @prashantkumargautam4191 4 ปีที่แล้ว

    Yes it will work, if in inherits

  • @_.sunnyraj._
    @_.sunnyraj._ 4 ปีที่แล้ว +5

    Why maximum comments says hard and confusing
    It was so easy huh 🤣

    • @sahilsurve5361
      @sahilsurve5361 4 ปีที่แล้ว

      Can you please explain what's d use of abstract class & method ? & Help us out ?
      Usually i understand videos by navin sir, but unable to understand here

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

    Upload a videos on boto3 please

  • @superallipalli
    @superallipalli 3 ปีที่แล้ว

    Loved this video! Good explanation , good job.

  • @binuscorpia
    @binuscorpia 4 ปีที่แล้ว

    can you explain the concept with real life examples?

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

    Excellent Video on Python Abstract Class 🙌.
    I Appreciate your efforts 🙏, but I have below doubt? 🤔
    from abc import ABC, abstractmethod
    import inspect
    class sample(ABC):
    def sam(self):
    pass
    print(inspect.isabstract(sample))
    game = sample()
    OUTPUT---> False
    In the above example, we can see that the sample class inherits ABC (Abstract Base Class) but by using the inspect module of python it returns false as it doesn't have an abstract class and we are able to create a class from the sample class
    ------------------------------------------------------------------------------------------------------------------------------------
    from abc import ABC, abstractmethod
    import inspect
    class sample(ABC):
    @abstractmethod
    def sam(self):
    pass
    print(inspect.isabstract(sample))
    game = sample()
    OUTPUT---> True
    In the above example, we can see that the sample class inherits ABC (Abstract Base Class) and has one decorator abstract method sam by using the inspect module of python it returns True which is correct.
    ------------------------------------------------------------------------------------------------------------------------------------
    Then is it necessary in python to became an Abstract class the class should inherit the extended ABC and at least have one abstract method?

  • @BLACK76870
    @BLACK76870 3 ปีที่แล้ว

    Thanks for the video. but you can make it better

  • @NeotenicApe
    @NeotenicApe 3 ปีที่แล้ว

    The println macro at 7:35, you had been writing Rust haha

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

    i don't get that when he made programer class he wrote com.process() what is this com

  • @gvbg5923
    @gvbg5923 3 ปีที่แล้ว

    The same program i have executed but still the same error
    TypeError: Can't instantiate abstract class ChildABST with abstract methods AbsMet
    here in the video naveen executed successfully but it's not when i tried with the same, what's wrong it has i dont understand

  • @priyankachendekar7720
    @priyankachendekar7720 4 ปีที่แล้ว

    what is difference between interface and abstract class,getting confused on this abstract class and method concept

  • @jawadaslam8537
    @jawadaslam8537 3 ปีที่แล้ว

    can a non abstract class have abstract methods in python ..in java,c++ its not but what about python

  • @ritikaagarwal7
    @ritikaagarwal7 3 ปีที่แล้ว

    At 9:51 my output comes only 'solving bugs'..that com.process is not executing..i dont understand what is happening and there is no error showing

  • @Mdroudian
    @Mdroudian 2 ปีที่แล้ว

    I enjoyed the simplicity of the video but abstract classes seem somewhat useless. Maybe it's just me.

  • @dineshcuts
    @dineshcuts 3 ปีที่แล้ว

    Bro need a video abt encapsulation

  • @JameelAcademy5
    @JameelAcademy5 3 ปีที่แล้ว

    Thanks for the short explanation!

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

    My eyes are burning. Does search and rescue use your IDE as a floodlight?

  • @nehaaadarsh
    @nehaaadarsh 4 ปีที่แล้ว

    Excellent!!! Thank you sir❤️

  • @entirebentirec3296
    @entirebentirec3296 4 ปีที่แล้ว

    Do one more video of abstract class,this video is nothing in understanding