Skip to content

Instantly share code, notes, and snippets.

@kennethreitz
Forked from j00bar/ugly.py
Last active September 6, 2018 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kennethreitz/83e701891ad8eedcc81a7406cb074a5b to your computer and use it in GitHub Desktop.
Save kennethreitz/83e701891ad8eedcc81a7406cb074a5b to your computer and use it in GitHub Desktop.
for foo in bar:
if not condition_one:
win_the_points()
else:
if check_the_thing():
continue
else:
if do_some_stuff():
do_the_thing()
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