Python String lower() Method

Example

Lowercase String:

txt = "Hello my FRIENDS"
x = txt.lower()
print(x)

Run Instance

Definition and Usage

The lower() method returns a string with all characters in lowercase.

Symbols and numbers will be ignored.

Syntax

string.lower()

Parameter Value

No Parameters