Skip to content

Instantly share code, notes, and snippets.

@sdf611097
Created January 15, 2018 16:12
Show Gist options
  • Save sdf611097/b8410eac6118c53aa35cb17063cba09b to your computer and use it in GitHub Desktop.
Save sdf611097/b8410eac6118c53aa35cb17063cba09b to your computer and use it in GitHub Desktop.
//example1
dict1 = {1: 2}
dict2 = dict1
dict1[1] = 3
print(dict2)
#{1: 3}
//example2
dict1 = {1: 2}
dict2 = dict1.copy()
dict1[1] = 3
print(dict2)
#{1: 2}
//example3
dict3 = {"ref": dict2}
dict4 = dict3.copy()
dict2[1]=5566
print(dict4)
#{'ref': {1: 5566}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment