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

14 lines
189 B
Python
Raw Normal View History

2023-08-01 22:47:17 +03:00
class Sample:
def __init__(self, n):
self.n = n
def __call__(self, x):
return x ** self.n
s = Sample(3)
result = map(s, range(10))
for x in result:
print(x)