What is the Python String lower() Method?

The `lower()` method is a string method in Python. When applied to a string, it converts all the characters in the string to lowercase.

This is useful for standardizing and comparing strings without considering case differences. For example, if the original string is “Hello World,” applying `lower()` would result in “hello world.” It is a commonly used method for case-insensitive string operations.

Python String lower() Method

Python string lower() method converts all letters of a string to lowercase. If no uppercase characters exist, it returns the original string.

Example:

Python3




string = "ConvErT ALL tO LoWErCASe"
print(string.lower())


Output

convert all to lowercase

Similar Reads

Syntax of String lower()

...

What is the Python String lower() Method?

string_name.lower()...

How to use the Python string lower() Method?

The `lower()` method is a string method in Python. When applied to a string, it converts all the characters in the string to lowercase....

How to Convert a String to Lowercase in Python

To convert all characters of a string to lowercase just call the lower() function with the string. lower() function is an in-built string method and can be used with variables as well as strings. Let’s understand it better with an example:...

Other Methods to Convert String to Lower Case

...

Applications of String lower() method

There are various ways to Lowercase a string in Python but here we are using some generally used methods to convert a string to lowercase:...

Contact Us