Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
4,743
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. contact_emails = {
  2.     'Sue Reyn' : 's.reyn@email.com',
  3.     'Mike Filt': 'mike.filt@bmail.com',
  4.     'Nate Arty': 'narty042@nmail.com'
  5. }
  6.  
  7. new_contact = input()
  8. new_email = input()
  9. contact_emails[new_contact] = new_email
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement