Skip to content

Instantly share code, notes, and snippets.

Created December 12, 2017 11:19
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4577424f586173fc6b91a215ea2ce89e to your computer and use it in GitHub Desktop.
Save anonymous/4577424f586173fc6b91a215ea2ce89e to your computer and use it in GitHub Desktop.
Pure-functional multiple string replace in Python
def multi_replace(string, replacements):
return reduce(lambda a, r: a.replace(r[0], r[1]), replacements, string)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment