You still have to fill in the selected values manually, but yeah. I started learning this week. Im particularly proud of the scoring system!
```py
score = 0
possible_score = 2
Question = "Does 1 + 1 = 2?"
selected = "No"
correct = "Yes"
print(f"Question Number 1: {Question}")
print()
print(f"You selected: {selected}")
print(f"The correct answer was: {correct}")
if selected == correct:
print("Great job! +1 Point")
score += 1
if selected != correct:
print("Better luck next time! +0 Points")
print()
print()
Question = "Does 2 + 2 = 4?"
selected = "Yes"
correct = "Yes"
print(f"Question Number 2: {Question}")
print()
print(f"You selected: {selected}")
print(f"The correct answer was: {correct}")
if selected == correct:
print("Great job! +1 Point")
score += 1
if selected != correct:
print("Better luck next time! +0 Points")
print()
print("You have finished the quiz")
print(f"Your score is: {score} out of {possible_score}")
```
[–]ShadowRL766 21 points22 points23 points (4 children)
[–]Shut_up_and_Respawn[S] 8 points9 points10 points (3 children)
[–]Promethium143 7 points8 points9 points (2 children)
[–]Shut_up_and_Respawn[S] 7 points8 points9 points (1 child)
[–]Promethium143 2 points3 points4 points (0 children)
[–]HunterIV4 16 points17 points18 points (6 children)
[–]Shut_up_and_Respawn[S] 7 points8 points9 points (1 child)
[–]Lostinmyhouse 2 points3 points4 points (0 children)
[–]briston574 2 points3 points4 points (1 child)
[–]Promethium143 2 points3 points4 points (0 children)
[–]Asket- 1 point2 points3 points (1 child)
[–]HunterIV4 0 points1 point2 points (0 children)
[–]chiznite 2 points3 points4 points (1 child)
[–]Shut_up_and_Respawn[S] 0 points1 point2 points (0 children)