>>> class Foo: bar = [] ... >>> obj = Foo() >>> obj.bar.append(1) >>> obj2 = Foo() >>> print obj2.bar [1]