Function Details: lower

Description


Return a copy of the string converted to lowercase.


Extended Description


The lower() method returns a copy of the string with all the cased characters converted to lowercase. Symbols and numbers remain unaffected. This method is useful for case-insensitive comparisons.


Read More about lower from Python Documentation

Function Signature



Module: builtins

Class: str

Parameters



Return


Returns a new string with all cased characters converted to lowercase.


Return Type


str

Output

Explanation

This example demonstrates the basic usage of lower(). It converts all uppercase letters to lowercase.