Skip to content

Instantly share code, notes, and snippets.

@szeitlin
Created December 2, 2014 00:44
Show Gist options
  • Select an option

  • Save szeitlin/c04a3560627ba540f0a2 to your computer and use it in GitHub Desktop.

Select an option

Save szeitlin/c04a3560627ba540f0a2 to your computer and use it in GitHub Desktop.
remove spaces from strings (helper function for data cleaning)
def remove_spaces(name):
'''Helper function removes spaces from string and returns it as a single word.
(str) -> (str)
>>> remove_spaces('Poly CO2')
PolyCO2
'''
nname = name.replace(" ", "")
return nname
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment