tryExpert Playground

Starts a block of code that will be monitored for exceptions

Python Playground
Output
Click "Run" to execute your code

CPython uses SETUP_FINALLY to register exception handlers on an internal block stack. The finally block is compiled into both the normal and exception paths.

Challenge

Try modifying the code above to explore different behaviors. Can you extend the example to handle a new use case?