Guest User

Untitled

a guest
Oct 19th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #!/usr/bin/python3
  2.  
  3. def callme():
  4. print('doing some stuff!')
  5.  
  6. def main():
  7. for i in range(1,100):
  8. callme()
  9. raise Exception('Something is went wrong!')
  10.  
  11. if __name__ == '__main__':
  12. main()
Add Comment
Please, Sign In to add comment