Skip to content

Instantly share code, notes, and snippets.

@reeddunkle
Last active May 4, 2016 19:11
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 reeddunkle/6040173f8d1b5202998afedd2642e3f4 to your computer and use it in GitHub Desktop.
Save reeddunkle/6040173f8d1b5202998afedd2642e3f4 to your computer and use it in GitHub Desktop.
Python startswith() method
>>> string = "Reed Dunkle"
>>> string.startswith('Reed D')
True
>>> string.startswith('Re')
True
>>> string.startswith('Reed W')
False
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment