Program to enter a string and convert it into uppercase python
Answers
Answered by
0
str=input("enter a string")
print(str.upper())
Similar questions