Languages
[Edit]
EN

Python - convert string to lowercase

0 points
Created by:
marc_so
894

In this article, we would like to show you how to convert string to lowercase in Python.

Quick solution:

text = "ABC"
print(text.lower())  # abc

 

Practical example

In this example, we use lower() method to lowercase the string.

text = "ABC"
print(text.lower())  # abc

Output:

abc

References

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Python - string (popular problems)

Python - convert string to lowercase
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join