Articles → PYTHON → Casefold Function In PythonCasefold Function In PythonIn this article, we will discuss about casefold function in python.Purpose Casefold function makes the string into lowercase.Example message = "This is the Test" print(message.casefold())Output Click to EnlargePosted 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