比如我想list1的是我不能顯示列表正確
['abc', '123', 'def', '456', 'ghi', '789']
和列表2
[['abc', '123'], ['def', '456'], ['ghi', '789']]
但是它打印
['ghi', '789']
[['abc', '123'], ['def', '456'], ['ghi', '789']]
And if I put outside the range it prints
['abc', '123', 'def', '456', 'ghi', '789']
[['abc', '123', 'def', '456', 'ghi', '789'], ['abc', '123', 'def', '456', 'ghi', '789'], ['abc', '123', 'def', '456', 'ghi', '789']]
爲什麼它會覆蓋前兩個元素?