t0 = [[]] * 2
t1 = [[], []]
t0[0].append('hello')
print t0
t1[0].append('hello')
print t1
结果是
[['hello'], ['hello']]
[['hello'], []]
但我分不清他们的区别。