class Tree:
def __init__(self, label, children = []):
self.label = label
self.children = children
t1 = Tree("START")
t2 = Tree("END")
t1.children.append(t2)
print t2.children
[<__main__.Tree instance at 0x005421C0>]
为什么 t2.children 不是空的?