torch_test/test/call_test.py

11 lines
198 B
Python
Raw Normal View History

2023-07-31 19:13:51 +08:00
class Person:
def __call__(self, name):
print("__call__"+"hello", name)
def hello(self, name):
print("hello", name)
person = Person()
person("world")
person.hello("world")