Advertisement
FranzVuttke

try_template

Oct 29th, 2023
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | Source Code | 0 0
  1. # try template
  2. try:
  3.     result = 616 / 2
  4. except ZeroDivisionError:
  5.     print("ERR")
  6. else:
  7.     print("GOOD")
  8. finally:
  9.     print("FIN")
  10.  
Tags: try template
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement