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

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')