Chapters
Python114 chapters

ReferenceString methods

str.lower()

A copy with every character in lower case.

Signature

text.lower()

Returns

A new string.

Example

Python
print("PYTHON".lower())
print("Quick" in "the quick fox".lower())

Output

python
False

See also