【发布时间】:2020-03-06 13:57:32
【问题描述】:
我不确定这个错误是什么意思:
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
【问题讨论】:
标签: python python-3.x typeerror