所以我在代码出现的第13天就遇到了这个问题,似乎无法理解正在发生的事情。
这是我的代码:
road = open('day13t.txt').read().strip().split('\n')
ogroad = [ list(x) for x in road ]
for i,r in enumerate(ogroad):
for j,c in enumerate(r):
if c == '>' or c == '<':
ogroad[i][j] = '-'
if c == '^' or c == 'v':
ogroad[i][j] = '|'
rdict = {'-':'>', '\\':'v', '/':'^'}
ddict = {'|':'v', '\\':'>', '/':'<'}
ldict = {'-':'<', '\\':'^', '/':'v'}
udict = {'|':'^', '\\':'<', '/':'>'}
test = [ list(x) for x in road ]
nroad = [ list(x) for x in road ]
for i in range(3):
for i, l in enumerate(test):
for j, c in enumerate(l):
if c == '>':
ns = ogroad[i][j+1]
nroad[i][j+1] = rdict[ns]
if c == '<':
ns = ogroad[i][j-1]
nroad[i][j-1] = ldict[ns]
if c == 'v':
ns = ogroad[i+1][j]
nroad[i+1][j] = ddict[ns]
if c == '^':
ns = ogroad[i-1][j]
nroad[i-1][j] = udict[ns]
test = list(nroad)
nroad = list(ogroad)
xroad = [ ''.join(x) for x in ogroad ]
for l in xroad:
print(l)
因此,这些列表似乎占据了自己的生命,因为在最外层的for循环的最后几行中,我打印出了xroad的内容(基本上是ogroad)。而且,即使在for循环中我什至都没有碰到其他东西,但是每次迭代都会提供不同的输出。
我使用的输入:
/->-\
| | /----\
| /-+--+-\ |
| | | | v |
\-+-/ \-|--/
\------/
答案 0 :(得分:3)
list()
仅创建平面副本。这意味着列表中的列表不会被复制而是共享。 Shell中的示例:
>>> t=[[42]]
>>> t2 = list(t)
>>> t is t2
False
>>> t[0] is t2[0]
True
>>> t2[0][0] = 43
>>> t
[[43]]