Home >>Python String Methods >Python String lower() Method
Python String lower() Method returns a copy of the string where all the characters are lower case. It ignored symbols and numbers.
Syntax:string.lower()Here is an example of Python String lower() Method:
lwr = "Hello my PHPTPOINT"
z = lwr.lower()
print(z)
str = "Welcome To PHPtpoint, WWW.PHPTPOINT.COM"
str = str.lower()
print(str)