Is there a way to convert a string from uppercase, or even part uppercase to lowercase?
For example, \"Kilometers\" → \"kilometers\".
With Python 2, this doesn't work for non-English words in UTF-8. In this case decode('utf-8') can help:
decode('utf-8')
>>> s='Километр' >>> print s.lower() Километр >>> print s.decode('utf-8').lower() километр