how to remove cases from string in python

Solutions on MaxInterview for how to remove cases from string in python by the best coders in the world

showing results for - "how to remove cases from string in python"
Mehdi
09 Feb 2016
1string = "PYTHON IS AWESOME"
2
3# print lowercase string
4print("Lowercase string:", string.casefold())