a =[3,4]
b=a
b.append(5)
print(a)
then the operations on b can manipulate a , so how can I fix not to link 'a' , while changing/modifying b
Help me !!
a =[3,4]
b=a
b.append(5)
print(a)
then the operations on b can manipulate a , so how can I fix not to link 'a' , while changing/modifying b
Help me !!