Skip to content

Instantly share code, notes, and snippets.

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

  • Save H3lllfir3/45b5c989ffaef1eb5e674149df0c4a63 to your computer and use it in GitHub Desktop.

Select an option

Save H3lllfir3/45b5c989ffaef1eb5e674149df0c4a63 to your computer and use it in GitHub Desktop.
conditions
#good
if foo.startswith('bar'):
if foo.endswith('bar'):
#bad
if foo[:3] == 'bar':
if foo[7:10] == 'bar':
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment