I have a problem with lists in python, I have a list in 2 different variables, with the same value .... but if I remove an element from any of the lists, the list that was to remain intact also has its element removed
listaUm = [1, 2, 3, 4]
listaDois = listaUm
listaDois.remove(3)
#listaDois [1, 2, 4]
#listaUm [1, 2, 4]