我有一个数据列表:
[[0, 3], [1, 2], [2, 1], [3, 0]]
我正在尝试检查是否有任何单个数字等于 3,如果是,则返回哪个元素,因此原始列表中的 list[0]、list[3] 等包含此值 3。
我已经做到了:
for i in range(0, len(gcounter_selection)):
for x in range(0,len(gcounter_selection)):
if any(x) in gcounter_selection[i][x]==3:
print(i)
顺便说一下,我的列表叫做 gcounter_selection。
但我收到一个类型错误:
TypeError: argument of type 'int' is not iterable
我试过使用生成器表达式,但我也无法让它工作。