TypeError:'str'对象不能解释为整数(Python)

时间:2018-11-03 00:11:55

标签: python

下面的代码中有一个问题,发生的情况是,在启动代码时,将一个字符串和一个整数插入数组中,我得到以下错误。

if ($isValid == false)

此错误来自IF并在数组noRepetidos中插入两个变量的行,我该如何解决?非常感谢能帮助我的每个人。

TypeError: 'str' object cannot be interpreted as an integer

1 个答案:

答案 0 :(得分:0)

Ola

您似乎想在嵌套列表中显示重复项?试试这个:

counter = Counter([
    item for sublist in carta3 for item in sublist
])
repetidos = [
    (key, count) for key, count in counter.most_common()
    if count > 1
]

Chio