i'm python newbie, and member variable of class works weird in my python code. some works like normal variable, but some works like static variable!
class Chaos:
list_value = []
value = "default"
def set_value(self, word):
self.list_value.append(word)
self.value = word
def show(self, num):
print(str(num) + "====")
print("value : " + self.value)
for st in self.list_value:
sys.stdout.write(st)
print("\n=====\n")
a = Chaos()
a.show(0)
a.set_value("A")
a.show(1)
b = Chaos()
a.show(2)
b.show(3)
result
0====
value : default
=====
1====
value : A
A
=====
2====
value : A
A
=====
3====
value : default
A
=====
but the last result of the test is different from what i expected in last test. There should be no "A" in the 'list_value' of the instance of 'b'. It was just created, and never have been added 'A' before. I added 'A' to the instance of 'a', not 'b'. But the result show me that there are also 'A' in 'b' More over, the 'list_value' and the 'value' in the class works differently. It looks like the both have same syntax. why do they work differently?