-
-
Save kennethreitz/83e701891ad8eedcc81a7406cb074a5b 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 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