Skip to content

Instantly share code, notes, and snippets.

@j00bar
Created September 26, 2017 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save j00bar/d364d1520159166335f71557de82a893 to your computer and use it in GitHub Desktop.
Save j00bar/d364d1520159166335f71557de82a893 to your computer and use it in GitHub Desktop.
for foo in bar:
if condition_one:
condition_two = check_the_thing()
if condition_two:
continue
else:
condition_three = do_some_stuff()
if condition_three:
do_the_thing()
else:
win_the_points()
else:
win_the_points()
wrap_it_up()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment