Advertisements
Advertisements
Question
Give one example for abstract method.
Case Study
Advertisements
Solution
class Shape(object):
def area(self):
raise NotImplementedError
Here, area() is an abstract method because it is declared but not implemented in the parent class.
shaalaa.com
Is there an error in this question or solution?
