COnvert string to uppper case Python code example
Example 1: python convert string to lowercase
# 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())