raise — Expert Playground
Throws an exception manually
Python Playground
Output
Click "Run" to execute your coderaise compiles to RAISE_VARARGS with 1 arg (exception), bare raise uses 0 args (re-raise), and 'raise from' uses 2 args (exception + cause).
Challenge
Try modifying the code above to explore different behaviors. Can you extend the example to handle a new use case?