Python - 对单个元素的更新会影响同一列中的所有元素[重复]

问题描述 投票:0回答:1

这个问题在这里已有答案:

我正在尝试创建一个connect 4类,但每当我删除一个字母/标记时,它都会更新整个列。我无法弄清楚为什么会发生这种情况:

class ConnectFour():
def __init__(self, width, height):
    self.width = width
    self.height = height        
    self.board = [[0] * width] * height

def dropLetter(self, letter, col):
    count = self.height - 1
    while count > 0 and self.board[count][col] != 0:
        count -= 1
    print self.board[count][col] 
    self.board[count][col] = letter     
    print self.board

C = ConnectFour(4,4)
C.dropLetter('X', 0)

然后当我打印self.board时,提供的列中的每个插槽都在更新。为什么会这样?

python arrays multidimensional-array
1个回答
0
投票

问题在这里:

self.board = [[0] * width] * height

当你这样做时,self.board包含height引用同一行[0]*width。现在您需要将其更改为

self.board = [[0]*width for _ in range(height)]
© www.soinside.com 2019 - 2024. All rights reserved.