Answers for "how create abstrci class in python"

0

abstarct class python

import abc
class Shape(metaclass=abc.ABCMeta):
   @abc.abstractmethod
   def area(self):
      pass
class Rectangle(Shape):
   def __init__(self, x,y):
      self.l = x
      self.b=y
   def area(self):
      return self.l*self.b
r = Rectangle(10,20)
print ('area: ',r.area())
Posted by: Guest on December-05-2020

Code answers related to "how create abstrci class in python"

Python Answers by Framework

Browse Popular Code Answers by Language