-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphonebook.py
43 lines (40 loc) · 1.25 KB
/
phonebook.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
def print_menu():
print('1, Display a contact')
print('2, Add a contact')
print('3, Delete a contact')
print('4, View a contact')
print('5, Quit')
print()
numbers = {}
choice = 0
print_menu()
while choice != 5:
choice = int(input("Enter a number between 1 and 5: "))
if choice == 1: #viewing a contact already saved
print("Contacts: ")
for name in numbers.keys():
print("Name: ", name, "\t Number: ", numbers[name])
print()
elif choice == 2: #adding a new contact
print("Add name and number")
name = input("Name: ")
phone = input("Number: ")
numbers[name] = phone
elif choice == 3:#deleting or removing a contact
print("Delete a contact")
name = input("Name: ")
if name in numbers:
del numbers[name]
else:
print(name, "was not found")
elif choice == 4:#search for a contact
print("Search number")
name = input("Name: ")
if name in numbers:
print("The contact is, ", numbers[name])
else:
print(name, "was not found ")
elif choice != 5:
print_menu()
elif choice == 5: #quit program
print("Thank u for using this application")