I have a very simple problem, but can't get my head around the solution. I simply want to save the value of a list at some stage in the program e.g
aa=['a', 'b']
bb=aa
print bb
aa.append('c')
print bb
With the second print of bb, of course it includes 'c'. How can I save the value of aa as it was when first assigned to bb??