Articles → PYTHON → Casefold Function In PythonCasefold Function In PythonIn this article, we will discuss the casefold function in Python.Purpose The casefold function converts the string into lowercase.Example message = "This is the Test" print(message.casefold())Output Posted By - Karan Gupta Posted On - Friday, May 17, 2019 Query/Feedback Your Email Id** Subject* Query/Feedback Characters remaining 250**
message = "This is the Test" print(message.casefold())
Query/Feedback