最近在用类中的列表时出现一件怪事
实例2中的列表,竟然有实例1中的数据.
查了半天发现是list的append方法的问题.
将全部的list.append(value) 换成 list = list + [value] 解决.