11 lines
198 B
Python
11 lines
198 B
Python
class Person:
|
|
def __call__(self, name):
|
|
print("__call__"+"hello", name)
|
|
|
|
def hello(self, name):
|
|
print("hello", name)
|
|
|
|
|
|
person = Person()
|
|
person("world")
|
|
person.hello("world") |