python-CSD-kursu/python-temel/staticmethod.alternative.py

8 lines
188 B
Python
Raw Normal View History

2023-08-03 23:47:57 +03:00
class Sample:
def foo(): # bu nasıl metot?
print('foo')
Sample.foo() # geçerli
s = Sample()
#s.foo() # error!