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

8 lines
187 B
Python
Raw Normal View History

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