0

下一个问题:

>>> a = "привет"
>>> a.title()
'\xd0\xbf\xd1\x80\xd0\xb8\xd0\xb2\xd0\xb5\xd1\x82'

>>> print(a.title())
привет

>>> from string import capwords
>>> capwords(a)
'\xd0\xbf\xd1\x80\xd0\xb8\xd0\xb2\xd0\xb5\xd1\x82'

>>> print(capwords(a))
привет

>>> print(a.capitalize())
привет

拉丁语没问题,一切正常。我现在在 Windows 7 中工作。我认为在 Linux 中这不是问题。

4

1 回答 1

0

尝试这个:

>>> print u"привет".capitalize() #call the method on the unicode object
Привет

>>> a = "привет"
>>> print a.decode('utf-8').capitalize() #decode str to unicode 
Привет
于 2012-09-16T14:23:41.910 回答