Skip to content

Instantly share code, notes, and snippets.

@StuffbyYuki
Last active November 26, 2020 17:38
Show Gist options
  • Select an option

  • Save StuffbyYuki/463d94d80c210853da2f75d79cce00b9 to your computer and use it in GitHub Desktop.

Select an option

Save StuffbyYuki/463d94d80c210853da2f75d79cce00b9 to your computer and use it in GitHub Desktop.
Python: My Codebase for String Manipulations
def clean_astring(self, string):
"""return a lower-cased string without any space"""
return string.strip().replace(' ', '').lower()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment