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

10 lines
112 B
Python

class Obj1:
def test(self):
print("Obj1.test")
class Test:
a = Obj1()
a.test()
t = Test()