KodingKid

Automated Information Forum in Python

Apr 10th, 2021
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.67 KB | None | 0 0
  1. import time
  2. print("Hello there!")
  3. print("I am an automated forum!")
  4. print("I will be asking you some questions to find more out about you!")
  5. print("Let's start; shall we?")
  6. time.sleep(5)
  7. name = input("What is your name?")
  8. print("Hello," name)
  9. age = int(input("How old are you?"))
  10. print("So you are" age)
  11. country = input("Where do you live?")
  12. print("Ok, you live in" country)
  13. ethnicity = input("What ethnicity do you idenitfy as?")
  14. print("So you identify as" ethnicity)
  15. sexual_orientation = input("What is your sexual orientation?")
  16. print("You are" sexual_orientation)
  17. time.sleep(5)
  18. print("All done!")
  19. print("Thank you for participating in my forum!")
  20. print("Bye!")
Add Comment
Please, Sign In to add comment