Skip to content

Instantly share code, notes, and snippets.

@edenau
Last active January 19, 2020 02:14
Show Gist options
  • Save edenau/78999b754284c4d640b623f7ee7677e1 to your computer and use it in GitHub Desktop.
Save edenau/78999b754284c4d640b623f7ee7677e1 to your computer and use it in GitHub Desktop.
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