Untitled

 avatar
unknown
plain_text
2 months ago
232 B
2
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