Skip to content

Instantly share code, notes, and snippets.

@larsbratholm
Last active May 10, 2016 19:53
Show Gist options
  • Save larsbratholm/cf73841ab09c587690f9caf47d39f46c to your computer and use it in GitHub Desktop.
Save larsbratholm/cf73841ab09c587690f9caf47d39f46c to your computer and use it in GitHub Desktop.
for else example
for i in range(5):
for j in range(3):
if i == 2 and j == 1:
break
else:
continue
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment