python-CSD-kursu/python-temel/method.overload.py~
2023-07-02 18:16:18 +03:00

13 lines
135 B
Python

class Sample:
def foo(self):
print('foo')
def tar(self):
print('bar')
Sample.bar = tar
s = Sample()
s.foo()
s.bar()