Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2017
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. Option A
  2. ******************
  3. if something:
  4.     raise Exception ("")
  5. do_something_else()
  6.  
  7. Option B
  8. ************************
  9. if something:
  10.     raise Exception ("")
  11. else:
  12.     do_something_else()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement