Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import time
- print("Hello there!")
- print("I am an automated forum!")
- print("I will be asking you some questions to find more out about you!")
- print("Let's start; shall we?")
- time.sleep(5)
- name = input("What is your name?")
- print("Hello," name)
- age = int(input("How old are you?"))
- print("So you are" age)
- country = input("Where do you live?")
- print("Ok, you live in" country)
- ethnicity = input("What ethnicity do you idenitfy as?")
- print("So you identify as" ethnicity)
- sexual_orientation = input("What is your sexual orientation?")
- print("You are" sexual_orientation)
- time.sleep(5)
- print("All done!")
- print("Thank you for participating in my forum!")
- print("Bye!")
Add Comment
Please, Sign In to add comment