Web Analytics

Python str.lower() Method

String Method Case Conversion

The lower() method returns a string where all characters are in lower case. Symbols and numbers are ignored.

Syntax

string.lower()

Parameters

No parameters.

Return Value

A string.

Example

Using the lower() method:

Output
Click Run to execute your code

Related Functions