Untitled
unknown
plain_text
10 months ago
232 B
4
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