python remove all the special chars from string code example
Example 1: remove special characters from string in python
''.join(i for i in string if i.isaplha()
Example 2: how to remove cases from string in python
string = "PYTHON IS AWESOME"
# print lowercase string
print("Lowercase string:", string.casefold())