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[:] # copy
>>> lst1, lst2, lst3
([1, 2, 3], [1, 2, 3], [1, 2, 3])
>>> del lst1[1]; lst1, lst2, lst3
([1, 3], [1, 3], [1, 2, 3])
