Python string Method - lower()

The lower() method is a built-in string method in Python that returns a new string with all characters converted to lowercase.

Syntax:

refer ‮itfigi:ot‬dea.com
string.lower()

Here, string is the string whose characters need to be converted to lowercase.

Example:

text = "HELLO WORLD"
print(text.lower())

Output:

hello world