8
为什么+ =在列表上表现异常?
+=python中的运算符似乎在列表上运行异常。谁能告诉我这是怎么回事? class foo: bar = [] def __init__(self,x): self.bar += [x] class foo2: bar = [] def __init__(self,x): self.bar = self.bar + [x] f = foo(1) g = foo(2) print f.bar print g.bar f.bar += [3] print f.bar print g.bar f.bar = f.bar + [4] print f.bar print g.bar f …