Estoy intentando ejecutar el código propuesto en el vídeo:
A,B,C = [],[],[]
for lista in datos: if (lista[1] <=2000): A.append(lista) elif (lista[1]>2000 and lista[1]<=2010): B.append(lista) else: C.append(lista)
Pero me sigue dando error, no entiendo el motivo:
TypeError Traceback (most recent call last) in () 2 3 for lista in datos: ----> 4 if(lista[1] <=2000): 5 A.append(lista) 6 elif(lista[1]>2000 and lista[1]<=2010):
TypeError: '<=' not supported between instances of 'str' and 'int'