Last active
February 28, 2020 17:56
-
-
Save sizhky/532aa60795e4e73f1939ee9fee84b704 to your computer and use it in GitHub Desktop.
freedom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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