Skip to content

Instantly share code, notes, and snippets.

@emerak
Last active December 12, 2015 02:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emerak/4696316 to your computer and use it in GitHub Desktop.
Save emerak/4696316 to your computer and use it in GitHub Desktop.
Dictionaries - LearnPython.org My answer to the excercise
phonebook = {
"John" : 938477566,
"Jack" : 938377264,
"Jill" : 947662781
}
# write your code here
phonebook["Jake"] = 938273443
phonebook.pop("Jill")
# testing code
if "Jake" in phonebook:
print "Jake is listed in the phonebook."
if "Jill" not in phonebook:
print "Jill is not listed in the phonebook."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment