Python - 有没有办法在项目中默认使用所有字符串unicode?

时间:2016-02-19 13:42:20

标签: python unicode internationalization

而不是在每次刺痛前键入u?

...以及一些保持stackoverflow快乐的文字

1 个答案:

答案 0 :(得分:11)

是的,请使用from __future__ import unicode_literals

>>> from __future__ import unicode_literals
>>> s = 'hi'
>>> type(s)
<type 'unicode'>

在Python 3中,默认情况下字符串是unicode字符串。