Untitled
unknown
plain_text
8 months ago
232 B
3
Indexable
from abc import ABC, abstractmethod
class A:
    
    @abstractmethod
    def do_smth(self):
        pass
class B(A):
    def do_another_thing(self):
        pass
class C(A):
    pass
class C(B):
    pass
Editor is loading...
Leave a Comment