how to convert a string to uppercase python code example
Example 1: from uppercase to lowercase python
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())
Example 2: python capitalize the entire string
message="hi"
print(message)
print(message.upper())