Answers for "remove - and / from string in python"

19

remove from string python

"Str*ing With Chars I! don't want".replace('!','').replace('*','')
Posted by: Guest on May-13-2020
0

how to remove cases from string in python

string = "PYTHON IS AWESOME"

# print lowercase string
print("Lowercase string:", string.casefold())
Posted by: Guest on November-15-2020

Code answers related to "remove - and / from string in python"

Python Answers by Framework

Browse Popular Code Answers by Language