Advertisement
Chl_Snt

Phone Book

Jul 27th, 2024
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.12 KB | None | 0 0
  1. contacts = {}
  2.  
  3.  
  4. def add_contact(name, phone):
  5.     contacts[name] = phone
  6.     print(f"Контакт {name} добавлен с номером {phone}.")
  7.  
  8.  
  9. def find_contact(name):
  10.     if name in contacts:
  11.         print(f"Номер телефона {name}: {contacts[name]}")
  12.     else:
  13.         print(f"Контакт {name} не найден.")
  14.  
  15.  
  16. while True:
  17.     print("Выберите действие: \n[1] Добавить контакт \n[2] Найти контакт \n[3] Выйти")
  18.     print("Выберите действие:")
  19.     print("[1] Добавить контакт")
  20.     print("[2] Найти контакт")
  21.     print("[3] Выйти")
  22.     action = input("-> ")
  23.     if action == "1":
  24.         name = input("Введите имя: ")
  25.         phone = input("Введите номер телефона: ")
  26.         add_contact(name, phone)
  27.     elif action == "2":
  28.         name = input("Введите имя для поиска: ")
  29.         find_contact(name)
  30.     elif action == "3":
  31.         break
  32.     else:
  33.         print("Неверный выбор, попробуйте ещё раз.")
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement