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 |