Skip to content

Instantly share code, notes, and snippets.

@neotheicebird
Created September 9, 2014 09:45
Show Gist options
  • Save neotheicebird/bd7bdb47b8e4d424d163 to your computer and use it in GitHub Desktop.
Save neotheicebird/bd7bdb47b8e4d424d163 to your computer and use it in GitHub Desktop.
Remove white spaces
# courtesy: http://stackoverflow.com/questions/8270092/python-remove-all-whitespace-in-a-string
# remove leading spaces
sentence = ' hello apple'
sentence.strip()
# >>> 'hello apple'
# remove all spaces
sentence = ' hello apple'
sentence.replace(" ", "")
# >>> 'helloapple'
# Remove duplicate spaces between words
sentence = ' hello apple'
" ".join(sentence.split())
# >>> 'hello apple'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment