hi, im trying to write a short, 8 outcomes choose your own adventure text game in python, but i keep running into errors. at this point, idk what the errors are anymore, so I wanted to ask if someone could please review the whole thing and lmk what isnt working. thanks.
#Importing a python library function
import random
# Defining values
answer = input("START [Y/N]")
answer2 = input("[A OR B]")
answer3 = input("[C OR D?]")
# Starting the game
def start():
if answer.upper().strip() == "Y":
print("You are at a social event hosted by the Culture & Technology Community club, drinking a cup of juice, and see someone who catches your eye. You stare for a disturbingly long time, feeling attracted by them. What do you do?")
print(list(["A) Go Up To Them", "B) Leave The Event."]))
else:
print("Sorry you don't wanna play : ( !")
# First 2 user choices - Pick between A or B, and detect if "N" was answered in previous function
def act1():
if answer.upper().strip() == "N":
start()
if answer2.upper().strip() == "A":
print("You walk up to the person, but now what do you do?")
print(list(["C) Give them a rose", "D) Introduce yourself"]))
elif answer2.upper().strip() == "B":
print("You feel anxious and flustered, watching the person, wondering what life could have been. You go to sit in a corner, finishing your juice, wishing you had social skills.")
start()
else:
print("Not an option, sorry!")
start()```