print uppercase cae to lowercase and lowercase to uppercase in python code example
Example: from uppercase to lowercase python
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())