Suppose I have the following method and the following list:
def ModificaValores(Valores):
dados = [6,5,4,3,2,1,0]
Valores = dados
Valores = [0,1,2,3,4,5,6]
print(Valores)
ModificaValores(Valores)
print(Valores)
Why in the out...
asked by
22.01.2018 / 12:22