Skip to content

Instantly share code, notes, and snippets.

@h2rashee
Created November 20, 2014 19:02
Show Gist options
  • Save h2rashee/b4c971a6163ff58fd58d to your computer and use it in GitHub Desktop.
Save h2rashee/b4c971a6163ff58fd58d to your computer and use it in GitHub Desktop.
Remove any spaces in a supplied input string
inp = raw_input('Input: ')
print inp.replace(" ", "")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment