Skip to content

Instantly share code, notes, and snippets.

@sizhky
Last active February 28, 2020 17:56
Show Gist options
  • Save sizhky/532aa60795e4e73f1939ee9fee84b704 to your computer and use it in GitHub Desktop.
Save sizhky/532aa60795e4e73f1939ee9fee84b704 to your computer and use it in GitHub Desktop.
freedom
i = 0
while True:
try:
i += 1
if i == 10: i/0
except ZeroDivisionError:
print('Go Free!!')
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment