In this program, we will take a string as input and convert all characters to Uppercase in a string
Steps to solve the program
- Take a string as input.
- Convert all characters of the given string to Uppercase using Upper().
- Print the output.
#Input string
string1 = "I live in pune"
#Printing output
print(string1.upper())
Output :
I LIVE IN PUNE