Well done!

You have completed Wrap Up!

Quiz Question 1 of 5

There is a keyword missing that allows you to have access to the exception that was caught.

correct_answers = input("How many correct answers did you get?  ")
try:
    correct_answers = int(correct_answers)
except ValueError ___ err:
    print("Whoops! Try again: {}".format(err))

What keyword is missing?

Choose the correct answer below:

Skip Quiz Review Video