make a character uppercase python code example
Example 1: python method to check for uppercase character
a="DEMO"
print(a.isupper())
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())