2023-07-06 23:09:49 +08:00

9 lines
88 B
Python

class Test:
def foo(self):
print('hello')
t = Test()
fo = t.foo
t.fn = fo