python upper and lower method code example
Example 1: from uppercase to lowercase python
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())
Example 2: python uppercase
my_string = "this is my string"
print(my_string.upper())
# output: "THIS IS MY STRING"