Articles → Python → Lower Function In PythonLower Function In PythonIn this article, we will discuss the lower function in Python.Purpose The 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 Posted 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