Skip to content

Instantly share code, notes, and snippets.

@ephes
Created January 25, 2022 14:20
Show Gist options
  • Save ephes/5c29f2f8738292f707c8bb407d1ade74 to your computer and use it in GitHub Desktop.
Save ephes/5c29f2f8738292f707c8bb407d1ade74 to your computer and use it in GitHub Desktop.
spam = {"ham": "eggs"}
spam | {"ham": "bacon"} # since 3.9
{**spam, "ham": "bacon"} # since 3.5
dict(spam, ham="bacon") # even on python2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment