mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
14 lines
159 B
Python
14 lines
159 B
Python
class Tree:
|
|
parent = None
|
|
child = []
|
|
|
|
def test():
|
|
a = Tree()
|
|
b = Tree()
|
|
a.child.append(b)
|
|
b.parent = a
|
|
|
|
test()
|
|
c = Tree()
|
|
print('end')
|