fork download
  1. def my_func():
  2. if not True:
  3. print "this should never be printed"
  4. try:
  5. print "if you're reading this, the try block is outside the if block"
  6. except:
  7. print "oops, something went wrong"
  8.  
  9. my_func()
Success #stdin #stdout 0.01s 7852KB
stdin
Standard input is empty
stdout
if you're reading this, the try block is outside the if block