Untitled

Anonymous
plain_text
02/20/2025 7:11 AM
312 B
11
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