Articles → Python → Lower Function In PythonLower Function In PythonIn this article, we will discuss lower function in pythonPurpose Lower function lowers every character of the string.Syntax String_variable.lower()Example mystring = "This is the string With some Capital Alphabets" print(mystring.lower())Output Click to EnlargePosted By - Karan Gupta Posted On - Wednesday, March 13, 2019 Query/Feedback Your Email Id Subject Query/Feedback Characters remaining 250
String_variable.lower()
mystring = "This is the string With some Capital Alphabets" print(mystring.lower())
Query/Feedback