fork download
  1. # your code goes here
  2.  
  3. user_text = 'закажи еду'
  4.  
  5. if user_text == 'привет':
  6. print('Привет-привет')
  7. elif user_text == 'пока':
  8. print('До свидания!')
  9. elif user_text == 'как погода?':
  10. print('Холодно :(')
  11. elif user_text == 'закажи еду':
  12. print('Пицу или борщ')
  13. else:
  14. print('Не понятно, повторите')
Success #stdin #stdout 0.02s 9116KB
stdin
Standard input is empty
stdout
Пицу или борщ