我不确定该错误是什么意思:
TypeError: Parameters to generic types must be types. Got slice(typing.List, <class 'int'>, None).
我正在尝试确认矩阵中是否具有给定的单元格/索引。
(在矩阵[[A, B, C], [D, E, F]]
中是否存在单元格/索引[0, 2]
?在C中是)。
我的输入参数是一个指定单元格索引的列表。我想获取单元格/列表并对其进行修改以检查其是否存在。每次我尝试触摸参数列表时,都会出现错误。
def in_matrix(matr: List[List:int], cell: List[int]) -> bool:
b = cell.pop()
a = cell.pop()
print(a)
print(b)
for y in range(len(matr)):
for x in range(len(matr[y])):
if matr[a][b] == True:
return True
else:
return False
答案 0 :(得分:2)
此类型matr: List[List:int]
应该为matr: List[List[int]]
。
这意味着matr
是整数列表的列表,例如:
matr = [[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]