how to convert python strings to lowercase 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())