我一直试图大量加载字符串,其中一些以utf-8字符开头.
问题是,他们没有大写!
mystring = 'lucas'
mystring.capitalize() # returns 'Lucas'
mytring = 'æthelred'
mystring.capitalize() # returns 'æthelred'
与含有”^¨和字符ð,þ,e.t.c.的元音相同.
我该怎么做才能解决这个问题?
我实际上无法访问字符串,我将它们放在其他地方,在文本文件中……
解决方法:
你省略了.字符串需要定义为python的unicode!
>>> mytring = u"æthelred"
>>> print mytring.capitalize()
Æthelred
因为在python 3中字符串默认是unicode你不需要你.
>>> "æthelred".capitalize()
'Æthelred'