摘要: when you append a list to a list, something needs to be noted: 1 a = 1 2 b = [] 3 for i in range(4): 4 a = a + b 5 b.append(a) the result is right, bu 阅读全文