Is there a way to convert a string from uppercase, or even part uppercase to lowercase?
E.g. Kilometers --> kilometers.
Is there a way to convert a string from uppercase, or even part uppercase to lowercase?
E.g. Kilometers --> kilometers.
s = "Kilometer" print(s.lower()) The official documentation is str.lower().
This doesn't work for non-English words in UTF-8. In this case decode('utf-8') can help:
>>> s='Километр' >>> print s.lower() Километр >>> print s.decode('utf-8').lower() километр How to convert string to lowercase in Python?
Is there any way to convert an entire user inputted string from uppercase, or even part uppercase to lowercase?
E.g. Kilometers --> kilometers
The canonical Pythonic way of doing this is
>>> 'Kilometers'.lower() 'kilometers' However, if the purpose is to do case insensitive matching, you should use case-folding:
This is a str method in Python 3, but in Python 2, you'll want to look at the PyICU or py2casefold - several answers address this here.
Python 3 handles unicode as regular strings:
>>> string = 'Километр' >>> string 'Километр' >>> string.lower() 'километр' But Python 2 does not, the below, pasted into a shell, encodes the literal as a string of bytes, using utf-8.
And lower doesn't map any changes that native Unicode objects would be aware of, so we get the same string.
>>> string = 'Километр' >>> string '\xd0\x9a\xd0\xb8\xd0\xbb\xd0\xbe\xd0\xbc\xd0\xb5\xd1\x82\xd1\x80' >>> string.lower() '\xd0\x9a\xd0\xb8\xd0\xbb\xd0\xbe\xd0\xbc\xd0\xb5\xd1\x82\xd1\x80' >>> print string.lower() Километр In scripts, Python will object to non-ascii (as of Python 2.5, and warning in Python 2.4) bytes being in a string with no encoding given, since the intended coding would be ambiguous. For more on that, see the Unicode how-to in the docs and PEP 263
str literalsSo we need a unicode string to handle this conversion, accomplished easily with a unicode literal:
>>> unicode_literal = u'Километр' >>> print unicode_literal.lower() километр Note that the bytes are completely different from the str bytes - the escape character is '\u' followed by the 2-byte width, or 16 bit representation of these unicode letters:
>>> unicode_literal u'\u041a\u0438\u043b\u043e\u043c\u0435\u0442\u0440' >>> unicode_literal.lower() u'\u043a\u0438\u043b\u043e\u043c\u0435\u0442\u0440' Now if we only have it in the form of a str, we need to convert it to unicode. Python's Unicode type is a universal encoding format that has many advantages relative to most other encodings. We can either use the unicode constructor or str.decode method with the codec to convert the str to unicode:
>>> unicode_from_string = unicode(string, 'utf-8') # "encoding" unicode from string >>> print unicode_from_string.lower() километр >>> string_to_unicode = string.decode('utf-8') >>> print string_to_unicode.lower() километр >>> unicode_from_string == string_to_unicode == unicode_literal True Both methods convert to the unicode type - and same as the unicode_literal.
It is recommended that you always work with text in Unicode.
Software should only work with Unicode strings internally, converting to a particular encoding on output.
However, to get the lowercase back in type str, encode the python string to utf-8 again:
>>> print string Километр >>> string '\xd0\x9a\xd0\xb8\xd0\xbb\xd0\xbe\xd0\xbc\xd0\xb5\xd1\x82\xd1\x80' >>> string.decode('utf-8') u'\u041a\u0438\u043b\u043e\u043c\u0435\u0442\u0440' >>> string.decode('utf-8').lower() u'\u043a\u0438\u043b\u043e\u043c\u0435\u0442\u0440' >>> string.decode('utf-8').lower().encode('utf-8') '\xd0\xba\xd0\xb8\xd0\xbb\xd0\xbe\xd0\xbc\xd0\xb5\xd1\x82\xd1\x80' >>> print string.decode('utf-8').lower().encode('utf-8') километр So in Python 2, Unicode can encode into Python strings, and Python strings can decode into the Unicode type.
You can do what Peter said, or if you want the user to input something you could do this:
raw_input('Type Something').lower() It will then automatically convert the thing they typed into lowercase.
Note: raw_input was renamed to input in Python 3.x and above.
Also, you can overwrite some variables:
s = input('UPPER CASE') lower = s.lower() If you use like this:
s = "Kilometer" print(s.lower()) - kilometer print(s) - Kilometer It will work just when called.
If the whole text is uppercase like "KILOMETER", and you only want the first character to be lowercased, then do
text = "KILOMETER" result = text[:1] + text[1:].lower() print(result) But to lowercase the whole string, do
text = "KILOMETER" text = text.lower() print(text) The string lower() method converts all uppercase characters in a string into lowercase characters and returns it.
Example:
string = "HeLLO PyTHON" new_string = string.lower() print string print new_string Output:
HeLLO PyTHON hello python In Python, the capitalize() method converts the first character of a string to capital (uppercase) letter.
Example:
string = "hello python" new_string = string.capitalize() print string print new_string Output:
hello python Hello python The string swapcase() method converts all uppercase characters to lowercase and all lowercase characters to uppercase characters of the given string and returns it.
string = "HEllO PythOn" new_string = string.swapcase() print string print new_string Output
HEllO PythOn heLLo pYTHoN It will convert the string to lower case
string = "XYz" converted = string.lower(); print("The converted lower case is:",converted)