case folding python

Solutions on MaxInterview for case folding python by the best coders in the world

showing results for - "case folding python"
Loane
28 Jul 2019
1string = "PYTHON IS AWESOME"
2
3# print lowercase string
4print("Lowercase string:", string.casefold())
Fabio
01 Oct 2017
1Lowercase string: python is awesome