remove english character from string code example
Example: how to remove cases from string in python
string = "PYTHON IS AWESOME"
# print lowercase string
print("Lowercase string:", string.casefold())
string = "PYTHON IS AWESOME"
# print lowercase string
print("Lowercase string:", string.casefold())