-5
Hi I’m trying to develop a code, the code is:
lista1 = ['5','5','1','4']
lista2 = ['5','5','0','1']
I was trying to get him to compare every element of Lista2 to list 1 and then identify element by element. In the list 2 if the element is equal and in the correct Indice of the list 1, if the element is equal and in the wrong Indice, if the element is wrong. The output would be more or less:
>>indice 0: elemento da lista 2 é igual ao da lista 1
>>indice 1: elemento da lista 2 é igual ao da lista 1
>>indice 2: elemento da lista 2 não é igual ao da lista 1
>>indice 3: elemento da lista 2 é igual ao da lista 1 mas está no indice errado
I tried to use for, and in an if using if Lista2[2] in lista1, but I couldn’t solve it the way I wanted.