python-CSD-kursu/python-temel/dekorator.3.py
2023-08-04 17:11:57 +03:00

9 lines
108 B
Python

class Sample:
def foo():
print('static foo method')
foo = staticmethod(foo)
Sample.foo()