Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- contacts = {}
- def add_contact(name, phone):
- contacts[name] = phone
- print(f"Контакт {name} добавлен с номером {phone}.")
- def find_contact(name):
- if name in contacts:
- print(f"Номер телефона {name}: {contacts[name]}")
- else:
- print(f"Контакт {name} не найден.")
- while True:
- print("Выберите действие: \n[1] Добавить контакт \n[2] Найти контакт \n[3] Выйти")
- print("Выберите действие:")
- print("[1] Добавить контакт")
- print("[2] Найти контакт")
- print("[3] Выйти")
- action = input("-> ")
- if action == "1":
- name = input("Введите имя: ")
- phone = input("Введите номер телефона: ")
- add_contact(name, phone)
- elif action == "2":
- name = input("Введите имя для поиска: ")
- find_contact(name)
- elif action == "3":
- break
- else:
- print("Неверный выбор, попробуйте ещё раз.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement