how to pick a uppercase letters and lowercase python code example
Example: python convert string to lowercase
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())
# By Alan W. Smith and Petar Ivanov
s = "Kilometer"
print(s.lower())