Automated Questionnaire (.py)

PHOTO EMBED

Thu Apr 08 2021 00:14:59 GMT+0000 (Coordinated Universal Time)

Saved by @Shivam #python

greeting = input("Hello, welcome to hell.\n ")
confirmation = input("Would you like to proceed?\n ")
nothing = [1, 2]
user_info = [greeting, confirmation]
one_question_prompt = [
"Are you sure this is the information?\n(a)Yes\n(b)No\n"
]
class Question0:
    def __init__(self, prompt1, answer1):
        self.prompt = prompt1
        self.answer = answer1
questions1 = [Question0(one_question_prompt[0], "a")]
def run_test0(questions1):
    score = 0
for question in questions1:
    answer = input(question.prompt)
if answer == question.answer:
    score = True

run_test0(questions1)
name1 = input("Enter your name: ")
user_info_name = [name1]
print("\n\nHello " + name1 + "! This is just a short automated text machine which will ask you random questions. To answer the multiple choice, please make sure to either type lowercase letters. \n\n")

print("Questionnaire: \n")
prompt0 = input("Where in hell do you wanna go \n(a)Downtown\n(b)Village\n(c)Outskirts\n(d)Boondocks\n(e)Shiv Corp\n(f)Nowhere\n\n")
prompt1 = input("\nDo you hate homework?\n(a)Yes\n(b)No\n\n")
prompt2 = input("\nDo you like this code?\n(a)Yes\n(b)No\n\n")
class Question:
    def __init__(self, prompt, answer):
        self.prompt = prompt
        self.answer = answer

print("\n*Note that this test is just a test m8. But, you can go to hell now ;).")
content_copyCOPY

Restart code if error shows up sometimes. *Add proper questions *Make it so the questions following it depend on the answer. (if __ = ___ then ___)