How to convert an entire string s into uppercase? For example s is originally "Python" and then it should become "PYTHON".
Example: python capitalize the entire string
message="hi"
print(message)
print(message.upper())
message="hi"
print(message)
print(message.upper())