I want to try to remove elements from a list without affecting the previous list.
This will give you a better picture:
>>> list_one = [1,2,3,4]
>>> list_two = list_one
>>> list_two.remove(2)
>>> list_two
[1, 3, 4]
>>> list_one # <- How do I not affect this list?
[1, 3, 4]
Is there a workaround for this problem?