We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dda451f commit 05fd325Copy full SHA for 05fd325
KBC.py
@@ -18,12 +18,13 @@
18
print(f"options: {options[i]}")
19
user_input = input("Enter your answer from given A,B,C,D options!").strip().upper()
20
if user_input == answers[i]:
21
- print("Congratulations, you entered right answer")
+ print("You entered right answer")
22
total_winnings += prize_money[i]
23
else:
24
print(f"Wrong answer, correct answer is {answers[i]}")
25
break
26
27
print(f"Congratulations you are taking home: ${total_winnings}")
28
29
-
+
30
0 commit comments