Run
mystring = 'Python Examples' print('Original String :',mystring) uppercase = mystring.upper() print('Uppercase String :',uppercase)
Output