Copy a dictionary : Dictionary Copy : Dictionary PYTHON examples


PYTHON examples » Dictionary » Dictionary Copy »

 

Copy a dictionary


Copy a dictionary


L = [1,2,3]
D = {'a':1'b':2}

A = L[:]              # instead of: A = L (or list(L))
B = D.copy()          # instead of: B = D

A[1'Ni'
B['c''spam'

print L, D

print A, B

           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Dictionary
» Dictionary Copy