fork download
  1. iteration = 0
  2.  
  3. while (True):
  4. try:
  5. iteration = iteration + 1
  6.  
  7. if (iteration < 5):
  8. continue
  9. else:
  10. break
  11.  
  12. print 'This statement never reached'
  13.  
  14. finally:
  15. print 'Hello from finally:', iteration
  16.  
Success #stdin #stdout 0.01s 8968KB
stdin
Standard input is empty
stdout
Hello from finally: 1
Hello from finally: 2
Hello from finally: 3
Hello from finally: 4
Hello from finally: 5