Write a program to print a string in lower case. python
Answers
Answered by
1
Answer:
Explanation:
Str= input("Enter a string")
Str2=""
Str2=Str1.lower()
print("New String=",Str2)
Hope this helps
Similar questions