L = [1,2,3]D = {'a':1, 'b':2}A = L[:] # instead of: A = L (or list(L))B = D.copy() # instead of: B = DA[1] = 'Ni'B['c'] = 'spam'print L, Dprint A, B
Name (required)
email (will not be published) (required)
Website