python-CSD-kursu/python-temel/call.function.py

10 lines
156 B
Python
Raw Normal View History

2023-08-01 18:43:21 +03:00
class Sample:
def __call__(self, x, y):
print('call: {}, {}'.format(x, y))
return x + y
s = Sample()
result = s(10, 20)
print(result)