class A:
@staticmethod
def stat(): return "static"
@classmethod
def cls(cls): return cls.__name__
print(A.stat(), A.cls())
Post #2923
675
Что выведет код?