Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Quiz help
#1
Hi all,

Im currently trying to learn python in my spare time, im trying to create a quiz but i am having some trouble getting my las question to work correctly.

for a10_1 i can answer with any input and it will print as a correct answer, and for the 2nd and 3rd inputs it goes straight to printing "You cannot enter duplicate answers"

bonus question: how can i make the script re ask the question if the user does input a duplicate?

Thank you in advance and sorry if my explanation of the problem is poor, new to this :)

score = 0
print("Question 10")
print("Name the only 3 principalities (1 point per correct answer)")
a10_1 = input("What is your first answer?")
if a10_1.lower() == "andorra" or "liechtenstein" or "monaco":
    print("Correct, 1 point added!")
    score += 1
else:
    print("Incorrect")
a10_2 = input("What is your second answer?")
if a10_2 == a10_1:
    print("You cannot enter duplicate answers")
elif a10_2.lower() == "andorra" or "liechtenstein" or "monaco":
    print("Correct, 1 point added!")
    score += 1
else:
    print("Incorrect")
a10_3 = input("What is your third answer?")
if a10_3 == a10_1 or a10_2:
    print("You cannot enter duplicate answers")
elif a10_3.lower() == "andorra" or "liechtenstein" or "monaco":
    print("Correct, 1 point added!")
    score += 1
else:
    print("Incorrect")

print(score)
Yoriz write May-04-2021, 11:48 AM:
Please post all code, output and errors (in their entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Reply


Messages In This Thread
Quiz help - by jslack17 - May-04-2021, 11:38 AM
RE: Quiz help - by Yoriz - May-04-2021, 11:49 AM
RE: Quiz help - by jslack17 - May-04-2021, 12:08 PM
RE: Quiz help - by Yoriz - May-04-2021, 12:31 PM
RE: Quiz help - by jslack17 - May-04-2021, 12:09 PM
RE: Quiz help - by perfringo - May-04-2021, 02:57 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  QUIZ GUI Form_When admin panel is open, main quiz form is getting freeze Uday 4 824 Aug-25-2023, 08:24 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020