python-CSD-kursu/python-temel/method.overload.py~

13 lines
135 B
Python
Raw Normal View History

2023-07-02 18:16:18 +03:00
class Sample:
def foo(self):
print('foo')
def tar(self):
print('bar')
Sample.bar = tar
s = Sample()
s.foo()
s.bar()