Skip to content

Instantly share code, notes, and snippets.

@H3lllfir3
Created November 6, 2019 13:42
Show Gist options
  • Select an option

  • Save H3lllfir3/03b52be2d0f26d068b8e9ebd6513b1a9 to your computer and use it in GitHub Desktop.

Select an option

Save H3lllfir3/03b52be2d0f26d068b8e9ebd6513b1a9 to your computer and use it in GitHub Desktop.
if condition
#good
if not seq:
if seq:
if process_ok:
#bad
if len(seq):
if not len(seq):
if process_ok == True:
if process_ok is True:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment