Skip to content

Instantly share code, notes, and snippets.

@LeeroyDing
Last active August 29, 2015 14:10
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 LeeroyDing/9fb16913fc7aa306ad1e to your computer and use it in GitHub Desktop.
Save LeeroyDing/9fb16913fc7aa306ad1e to your computer and use it in GitHub Desktop.
Two styles
# First style
if something is not None: # or whatever condition
big_block_of_code()
# Second style
if something is None: # or whatever condition
continue # or return None or whatever
big_block_of_code()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment