过去两天我一直在尝试解决此错误,但我无法解决。
我必须将值(这是一个列表)传递给函数,但它说:
Typerror :list indices must be integers or slices and not str.
这是我的代码:
def input_execute(board, position, mark):
board[position] = mark
position = input('enter the position')
input_execute(board_items, position, 'x')
输出:
enter the position:5
如果我输入它显示的位置:
Typerror :list indices must be integers or slices and not str.
慕盖茨4494581
相关分类