Answers for "python abstract class"

4

python abstract class

# Python program showing 
# abstract base class work 
  
from abc import ABC, abstractmethod 
class Animal(ABC): 
  
    def move(self): 
        pass
  
class Human(Animal): 
  
    def move(self): 
        print("I can walk and run") 
  
class Snake(Animal): 
  
    def move(self): 
        print("I can crawl") 
  
class Dog(Animal): 
  
    def move(self): 
        print("I can bark") 
  
class Lion(Animal): 
  
    def move(self): 
        print("I can roar") 
          
# Driver code 
R = Human() 
R.move() 
  
K = Snake() 
K.move() 
  
R = Dog() 
R.move() 
  
K = Lion() 
K.move() 

Output:

I can walk and run
I can crawl
I can bark
I can roar
Posted by: Guest on May-14-2020
4

abstract class python

An abstract class exists only so that other "concrete" classes can inherit from the abstract class.
Posted by: Guest on July-17-2021
1

Abstraction example python

from abc import ABC,abstractclassmethod

class Parent(ABC):

    @abstractclassmethod
    def pqr(self):
        pass

class Child(Parent):

    def pqr(self):
        print("PQR")

obj = Child()
obj.pqr()
Posted by: Guest on September-05-2020
0

abstarct class python

from abc import ABC

class MyABC(ABC):
    pass
Posted by: Guest on December-05-2020

Code answers related to "python abstract class"

Python Answers by Framework

Browse Popular Code Answers by Language