Considere o seguinte programa em Python. a=[1,2,3];b=a;b[1]=...
Considere o seguinte programa em Python.
a=[1,2,3];
b=a;
b[1]=20;
print(a,b);
É correto afirmar que ele imprime
Considere o seguinte programa em Python.
a=[1,2,3];
b=a;
b[1]=20;
print(a,b);
É correto afirmar que ele imprime