python how to change all characters in a string to capital letters code example
Example: python capitalize the entire string
message="hi"
print(message)
print(message.upper())
message="hi"
print(message)
print(message.upper())