Python String lower() Method
ExampleGet your own Python Server
Lower case the string:
txt = "Hello my FRIENDS"
x = txt.lower()
print(x)
Try it Yourself »
Definition and Usage
The lower()
method returns a string where
all characters are lower case.
Symbols and Numbers are ignored.
Syntax
string.lower()
Parameter Values
No parameters