New: Intelligent Flashcards spaced-repetition decks for every topic, built to make things actually stick.
What does a try / except block let you do?
try
except
Prevent any exception from being raised in the first place
Run risky code, and if a matching exception is raised, jump to the handler instead of propagating it up the call stack
Pause the program so the user can inspect variables in an interactive prompt