Skip to content

Instantly share code, notes, and snippets.

@ardenn
Created October 1, 2018 17:59
Show Gist options
  • Save ardenn/5f0e3e6c8314de183392588d64f1ddf4 to your computer and use it in GitHub Desktop.
Save ardenn/5f0e3e6c8314de183392588d64f1ddf4 to your computer and use it in GitHub Desktop.
Python Dictionaries Tutorial - Merging dictionaries
extra_info = {
"verified":True,
"qualification":"Undergraduate Degree",
"taxable":True}
# Merge extra_info with job2
job2.update(extra_info)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment