Python Tutorial Python Advanced Python References Python Libraries

Python String - casefold() Method



The Python casefold() method is used to convert all characters of the string in lowercase. Any symbol, space, or number in the string is ignored while applying this method. Only alphabet are converted.

It is similar to string lower() method but stronger version, which converts more characters into lowercase. Due to this feature, it finds more matches when comparing two strings after converted using casefold() method

Syntax

string.casefold()

Parameters

No parameter is required.

Return Value

Returns the string with all characters of the specified string is in lower case.

Example:

In the example below, casefold() method is used to convert all characters of the given string in lowercase.

MyString = "Hello John!"
print(MyString.casefold())

The output of the above code will be:

hello john!

❮ Python String Methods