Skip to content

Instantly share code, notes, and snippets.

@brettfreer
Created June 20, 2016 22:08
Show Gist options
  • Save brettfreer/fc9bc48717e7fe066a41acd4efe5a918 to your computer and use it in GitHub Desktop.
Save brettfreer/fc9bc48717e7fe066a41acd4efe5a918 to your computer and use it in GitHub Desktop.
Remove all spaces from a string
def remove_spaces(s):
return s.replace(' ', '')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment