Coding Questions
Coding Questions
EditEdit
MasterMaster
texttext stylesstyles
Abstraction
Example :
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")
Abstraction
Example :
class Dog(Animal):
def move(self):
print("I can bark")
class Lion(Animal):
def move(self):
print("I can roar")
Abstraction
Example :
R = Human()
R.move()
K = Snake()
K.move()
R = Dog()
R.move()
K = Lion()
K.move()
Abstraction
Example :
Output :
I can walk and run
I can crawl
I can bark
I can roar
#LifeKoKaroLift
Thank you!