week-4 #5

Merged
Kenwood merged 12 commits from week-4 into master 2021-02-03 16:53:55 -05:00
1 changed files with 12 additions and 0 deletions
Showing only changes of commit 9f9c84428c - Show all commits

12
4/4.5/4.5.2/main.py Normal file
View File

@ -0,0 +1,12 @@
contact_emails = {
'Sue Reyn' : 's.reyn@email.com',
'Mike Filt': 'mike.filt@bmail.com',
'Nate Arty': 'narty042@nmail.com'
}
new_contact = input()
new_email = input()
contact_emails[new_contact] = new_email
for contact in contact_emails:
print('{0} is {1}'.format(contact_emails.get(contact), contact))