I'm trying to copy items to a list, but it always adds just links.
This is what I tried:
1:
list1 = []
list2 = [1]
list1.append(list2)
2.
list1 = []
list2 = [1]
list1 += [list2]
3.
list1 = []
list2 = [1]
list1 = list1 + [list2]
When I modify list2 after that, list1 always changes, too.
Python version: sys.version_info(major=2, minor=7, micro=3, releaselevel='final', serial=0)
How do I append to a list without appending just a reference.
sys.versioninstead. – Ashwini Chaudhary Nov 21 '12 at 17:04l1andl2as variable names. Thellooks too much like1. This actually threw me off when I was reading your post – inspectorG4dget Nov 21 '12 at 17:05