How do I lowercase a string in Python?

Use str.lower():

"Kilometer".lower()

Leave a Comment