is there a python function that convert upper case word to lower case 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())