Today we are going to share a Python program to convert Uppercase to Lowercase. If you are a python beginner and want to start learning the python programming, then keep your close attention in this tutorial as I am going to share a Python program to convert Uppercase to Lowercase.
To increase your Python knowledge, practice all Python programs:
Copy the below python program and execute it with the help of python compiler.
1 2 3 4 5 6 7 | print("Enter 'x' for exit."); string = input("Enter any string in uppercase to convert in lowercase: "); if string == 'x': exit(); else: string_in_lowercase = string.lower(); print("\nSame String in Lowercase =",string_in_lowercase); |
Enter ‘x’ for exit.
Enter any string in uppercase to convert in lowercase: FREEWEBMENTOR
Same String in Lowercase = freewebmentor
To increase your Python knowledge, practice all Python programs, here is a collection of 100+ Python problems with solutions.
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.