How to Convert String Lowercase in Python?
Published On: 13/12/2022 | Category:
Python

Hi Guys,
This article will give you example of python program to convert string to lowercase. This article will give you simple example of python function to convert string to lowercase. you can see how to convert string into lowercase in python. step by step explain python string convert to lowercase.
In Python, it is possible to change a string's case to lowercase. I'll give you an example of how to lowercase a string using the lower() method. So let's look at the samples below.
So let's see bellow example:
Example 1:
main.pymyString = "Tuts-Station.Com is a great SITE!" # String Convert to LowerCase lowerString = myString.lower() print(lowerString);Output
tuts-station.com is a great site!
It will help you....
Happy Pythonic Coding!