-1
I am wanting to make a function that returns the equal elements of a list.
cartas_jogador_a = ['4', '7', '10', '8', '1', '10']
I wanted to get only the values '10', '10' in another list, already tried using the while and for loop but did not get result.
https://answall.com/questions/216413/identificar-elements-repeaters-lista-com-python can help you :)
– Gustavo Mota Nunes