我遇到了一些問題,通過在顯示的代碼中使用Python中的嵌套列表bleow。嵌套列表索引
基本上,我有一個2D列表包含所有0值,我想更新循環中的列表值。
但是,Python不會產生我想要的結果。有什麼我誤解range()
和Python列表索引?
some_list = 4 * [(4 * [0])]
for i in range(3):
for j in range(3):
some_list[i+1][j+1] = 1
for i in range(4):
print(some_list[i])
結果我的預期是:
[0, 0, 0, 0]
[0, 1, 1, 1]
[0, 1, 1, 1]
[0, 1, 1, 1]
但是從Python的實際結果是:
[0, 1, 1, 1]
[0, 1, 1, 1]
[0, 1, 1, 1]
[0, 1, 1, 1]
這是怎麼回事?
這裏是一個編程慣用Python指南的鏈接。其中一些已經過時,但有關變量和名稱的部分仍然相關:http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html#other-languages-have-variables – pcurry