Python Programming - Console Input/Output - Discussion

Discussion Forum : Console Input/Output - General Questions (Q.No. 20)
20.
How can you convert a string to lowercase?
str.lowercase()
convert_lowercase(str)
str.lower()
lower(str)
Answer: Option
Explanation:
The lower() method is used to convert a string to lowercase in Python.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.