Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Question: How do we convert the string to lowercase?
Answer:

 The lower() function is used to convert string to lowercase.

Example:

str = "WithoutBook"

print(str.lower())

Output:

withoutbook

Is it helpful? Yes No

Most helpful rated by users:

©2025 WithoutBook