today i made a lil fun quiz game where it’ll asks the player questions and if the player answers correctly it’ll give them points and pit a final score to show the player what they got. Here’s the video i used and screenshots and some of the code
here’s the video:
here’s screen shots of the code

here’s some of the code
ans = input("are you ready to play (yes/no): ")
score = 0
total_q = 4
if ans.lower() == "yes":
ans = input("1. what was Mario's original name? ")
if ans.lower() == "jumpman":
score += 1
print("correct")
else:
print("incorrect")
here’s some of the code and its asking the user if they wanna play and if they say yes they’re given the first question in this case “what was Mario’s original name?”