标签:python
在Python 3.x中,字符串统一为unicode,不需要加前缀 u,而以字节存储的str则必须加前缀 b。请利用__future__的unicode_literals在Python 2.7中编写unicode字符串。
使用from __future__ import unicode_literals将把Python 3.x的unicode规则带入Python 2.7中。
参考代码:
from __future__ import unicode_literals s = ‘am I an unicode?‘ print isinstance(s, unicode)
标签:python
原文地址:http://blog.csdn.net/qq_20480611/article/details/46641097