how to make a string uppercase in python code example
Example 1: uppercase string python
string.lower()
string.upper()
Example 2: python to uppercase
original = Hello, World!
#both of these work
upper = original.upper()
upper = upper(original)
Example 3: python capitalize the entire string
message="hi"
print(message)
print(message.upper())