Write a Python program to read a character in the uppercase and then print it in lowercase.
PROGRAM:
a=str(input("Enter a character:"))
print("The characterS in a lowercase :",str.lower(a))
OUTPUT:
Enter a character: WELCOME TO INFINITY NOTES 00 WEBSITE
The character in a lowercase : welcome to infinity notes 00 website
No comments:
Post a Comment