Skip to content

Commit 05fd325

Browse files
authored
Update KBC.py
1 parent dda451f commit 05fd325

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

KBC.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@
1818
print(f"options: {options[i]}")
1919
user_input = input("Enter your answer from given A,B,C,D options!").strip().upper()
2020
if user_input == answers[i]:
21-
print("Congratulations, you entered right answer")
21+
print("You entered right answer")
2222
total_winnings += prize_money[i]
2323
else:
2424
print(f"Wrong answer, correct answer is {answers[i]}")
2525
break
2626

2727
print(f"Congratulations you are taking home: ${total_winnings}")
2828

29-
29+
30+

0 commit comments

Comments
 (0)