I would to know what Python call when I use the =
:
a = b
Where do I look for this information?
I would have the "assignment to variables" with my =
a would have a similar behaviour
l=list()
l.append(1)
l.append(2)
l.append(3)
l1=l
l1[2] = ’B’
print(l1)
[1, 2, ’B’]
print(l)
[1, 2, 3]