I know that a list L can be copied by doing L[:]. But I face an issue that I do not understand why.
src = [1,2,3]
dest = [[5,6,7]]
dest.append(src[:].append(4))
dest
[[5, 6, 7], None]
In the above sample, the src list is not copied to dest (see None) when I tried to copy and append 4 to it.
dest.append(src[:])
dest
[[5, 6, 7], None, [1, 2, 3]]
As seen in the above snippet, if I add simply add the list (to dest) without any append attempt, it gets inserted. Any idea?
appenddoesn't return the modified list (it returns None). – Rob Wouters Jan 21 '12 at 7:35