how to make a variable uppercase in python code example
Example 1: uppercase string python
string.lower()
string.upper()
Example 2: python capitalize the entire string
message="hi"
print(message)
print(message.upper())
string.lower()
string.upper()
message="hi"
print(message)
print(message.upper())