t0 = [[]] * 2
t1 = [[], []]
t0[0].append('hello')
print t0
t1[0].append('hello')
print t1
結果は
[['hello'], ['hello']]
[['hello'], []]
しかし、私はそれらの違いを見分けることができません。