Skip to content

Instantly share code, notes, and snippets.

@vpayno
Last active December 24, 2015 18:59
Show Gist options
  • Select an option

  • Save vpayno/6847374 to your computer and use it in GitHub Desktop.

Select an option

Save vpayno/6847374 to your computer and use it in GitHub Desktop.
Python Cheat Sheet - Strings

Python Cheat Sheet

by Victor Payno

Strings


s = "abcdefgh"
target = "b"
replacement = "X"
s.replace(target, replacement)

line.split(" ")



Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment