Last active
August 29, 2015 14:10
-
-
Save LeeroyDing/9fb16913fc7aa306ad1e to your computer and use it in GitHub Desktop.
Two styles
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
# 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