today i made a game where its choose your own adventure game where it’ll ask you if you wanna play and if yes it’ll tell you that you’ve got 2 choices and if you move left or right you’ll get a different ending depending on the choices you make, here’s some screenshots, some of the code and the video


while True:
answer = input("would you like to play? (yes/no) ")
if answer.lower() == "yes":
answer = input("you reach a fork in the road inside of a demon's realm, would you like to left or right(left/right) ").lower()
if answer == "left":
answer = input("you encounter a dangerous demon, would you like to run or attack(run/attack) ")
if answer == "attack":
print("that wasnt the greatest plan/idea, you lost!")
else:
print("good choice, you made it away safly.")
here it’s asking the user if they wanna play and if the user says yes it’ll tell you your in a demon realm with to paths if the user says left they’ll meet up with a dangerous demon and if the user runs away they’ll be safe but if they choose to attack they get a game over
here’s the video i used to help make the project i just change some stuff around to make it more original