change string case in python code example
Example 1: python convert string to lowercase
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())
Example 2: python3 lowercase
str.lower()
Example 3: python capitalize the entire string
message="hi"
print(message)
print(message.upper())