-2
votes
0answers
332 views
python example: difference between object reference and object copy [closed]
had an example in my newbie notes and thought it wouldn't hurt to share it...
>>> lst1=[1,2,3]
>>> lst2 = lst1 # reference
>>> lst3 = lst1[:] …
