Skip to content

Instantly share code, notes, and snippets.

@LukaHuang
Created August 24, 2021 11:37
Show Gist options
  • Select an option

  • Save LukaHuang/ee89a1b66f7381a39580713e1585fdec to your computer and use it in GitHub Desktop.

Select an option

Save LukaHuang/ee89a1b66f7381a39580713e1585fdec to your computer and use it in GitHub Desktop.
>>> dict = {}
>>> dict['key_1'] = 100
>>> dict['key_2'] = 200
>>> id(dict)
4488532992
>>> dict['key_3'] = 300
>>> id(dict)
4488532992
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment