Important Notice:

Course Content
The Calendar Module
Library Function/Predefined Functions
0/4
Sys Module
Library Function/Predefined Functions
0/2
OS Module
Library Function/Predefined Functions
0/2
Functions in Python (Chapter-10) M3-R5
About Lesson

lower():-

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

Syntax:-                       string.lower()

txt = “Hello my FRIENDS”

x = txt.lower()

print(x)

Output

hello my friends

 

error: Content is protected !!