mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
10 lines
112 B
Python
10 lines
112 B
Python
class Obj1:
|
|
def test(self):
|
|
print("Obj1.test")
|
|
|
|
class Test:
|
|
a = Obj1()
|
|
a.test()
|
|
|
|
t = Test()
|