Python String lower() Method

❮ String Methods


Example

Lower case the string:

txt = "Hello my FRIENDS"

x = txt.lower()

print(x)
Try it Yourself »

Definition and Usage

The lower() method returns a string where all characters are lower case.

 Symbols and Numbers are ignored.


Syntax

string.lower()

Parameter Values

No parameters


❮ String Methods

Copyright 1999-2023 by Refsnes Data. All Rights Reserved.