Last active
January 19, 2020 02:14
-
-
Save edenau/78999b754284c4d640b623f7ee7677e1 to your computer and use it in GitHub Desktop.
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
for a in range(5): | |
if a == 2: | |
break | |
print(a) | |
print('Final a is',a) | |
# 0 | |
# 1 | |
# Final a is 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment