Skip to content

Instantly share code, notes, and snippets.

@reeddunkle
Last active May 4, 2016 19:11
Show Gist options
  • Select an option

  • Save reeddunkle/6040173f8d1b5202998afedd2642e3f4 to your computer and use it in GitHub Desktop.

Select an option

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