Python String lower() Method

Converts a string to all lowercase characters:

Syntax

Python
string.lower()

Example

Python
print('Hello World!'.lower())

Output

hello world!