Advertisement
Guest User

Untitled

a guest
Jan 17th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. while True:
  2. import time
  3. print('Benvenuto utente, ci dica il suo nome?')
  4. nome = input()
  5. print(nome + ' .. come stai? ')
  6. umore = input()
  7. A = input()
  8. if A == "tu?":
  9. print("Bene anche io")
  10. time.sleep(1)
  11. print('sta scrivendo..')
  12. time.sleep(3)
  13. eta = int(input('Quanti anni hai? '))
  14. if eta < 18:
  15. print('He left the chat. ')
  16. break
  17. if eta >= 18:
  18. print('Da dove vieni?')
  19. country = input()
  20. time.sleep(1)
  21. print('ah io sono di li... in ' + (country))
  22. break
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement