“def getBoardCopy”语法无效

时间:2017-03-14 17:16:48

标签: python

def getBoardCopy(board):
    #Make a duplicate of the board list and return it the duplicate.
    dupeBoard=[]

    for i in board:
        dupeBoard.append(i)

    return dupeBoard

这只是为了设置电路板的副本,但我一直得到无效的语法错误,我不知道为什么。

1 个答案:

答案 0 :(得分:0)

这通常意味着您的行上方的语法错误。

查看之前的行,查找缺少的括号,冒号,括号,引号,任何可能使表达式打开的内容。

您可能错过了上一行的冒号:

(bo[9] == le and bo[5] == le and bo[1] == le)

你应该这样写:

(bo[9] == le and bo[5] == le and bo[1] == le))