Skip to content

Instantly share code, notes, and snippets.

@SahbiOuali13
Last active September 20, 2020 09:12
Show Gist options
  • Save SahbiOuali13/2b01679d151f60294f3e6b362f8cb254 to your computer and use it in GitHub Desktop.
Save SahbiOuali13/2b01679d151f60294f3e6b362f8cb254 to your computer and use it in GitHub Desktop.
Cleans a string from spaces and other characters.
greet = ' Hello Python '
>>greet.lstrip()
'Hello Python '
>>greet.rstrip()
' Hello Python'
>>greet.strip()
'Hello Python'
nom = ";,: olom',;:"
>>>print(nom.strip(";,: '"))
'olom'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment