What is the output of following code? from abc import ABC, abstractmethod class A(ABC): @abstractmethod def m1(): print('In class A.') a = A() a.m1()
Questions & Answers › Category: Programming Language › What is the output of following code? from abc import ABC, abstractmethod class A(ABC): @abstractmethod def m1(): print('In class A.') a = A() a.m1()