Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.51 KB | None | 0 0
  1. user_dict = {
  2.   'Привет': 'И тебе шалом',
  3.   'Что делаешь?': 'Программирую',
  4.   'Как дела?': 'Хорошо!',
  5.   'На каком языке программируешь': 'на Python',
  6.   'И как успехи?': 'Хорошо',
  7.   'Досвидос': 'Чао'
  8. }
  9.  
  10. def ask_user():
  11.   while True:
  12.     user_input = input('Введите: ')
  13.     if user_input == user_dict[0]:
  14.       print(user_dict.get('Привет'))
  15.  
  16.  
  17. if __name__ == "__main__":
  18.     ask_user()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement