Python String lower() Method
Converts a string to all lowercase characters:
Syntax
Python
Copy Code
string.lower()
Example
Python
Copy Code
print('Hello World!'.lower())
Output
hello world!
Converts a string to all lowercase characters:
string.lower()
print('Hello World!'.lower())
hello world!