总结一下python中超级低级的错误。
a = 3, print(type(a)) #output tuple
a = [[]]*5 a[0].append(1) print(a) #output: [[1], [1], [1], [1], [1]]