① Python的每个新版本都会增加一些新的功能,或者对原来的功能作一些改动。有些改动是不兼容旧版本的,也就是在当前版本运行正常的代码,到下一个版本运行就可能不正常了
② 从python2.7到Python 3.x就有不兼容的一些改动,比如2.x里的字符串用'xxx'
表示str,Unicode字符串用u'xxx'
表示unicode,而在3.x中,所有字符串都被视为unicode,因此,写u'xxx'
和'xxx'
是完全一致的,而在2.x中以'xxx'
表示的str就必须写成b'xxx'
,以此表示“二进制字符串”。
要直接把代码升级到3.x是比较冒进的,因为有大量的改动需要测试。相反,可以在2.7版本中先在一部分代码中测试一些3.x的特性,如果没有问题,再移植到3.x不迟。
③ Python提供了__future__
模块,把下一个新版本的特性导入到当前版本,于是我们就可以在当前版本中测试一些新版本的特性。举例说明如下:
④ 为了适应Python 3.x的新的字符串的表示方法,在2.7版本的代码中,可以通过unicode_literals
来使用Python 3.x的新的语法:在python3中默认的编码采用了unicode, 并取消了前缀u。
在py2.7的项目中用了future模块中的 unicode_literals 来为兼容py3.x做准备,今天遇到一个UnicodeEncodeError的错误
- 未引入unicode_literals版本
#coding:utf-8
from datetime import datetime
now = datetime.now()
print now.strftime('%m月%d日 %H:%M')
这段代码可以正常执行输出: 03月12日 21:53
- 引入unicode_literals
#coding:utf-8
from __future__ import unicode_literals
from datetime import datetime
now = datetime.now()
print now.strftime('%m月%d日 %H:%M')
抛出如下错误::
代码语言:javascript复制Traceback (most recent call last):
File "unicode_error_demo2.py", line 7, in <module>
print now.strftime('%m月%d日 %H:%M')
UnicodeEncodeError: 'ascii' codec can't encode character u'u6708' in position 2: ordinal not in range(128)
- 解决方案一:设置运行时编码为utf-8
#coding:utf-8
from __future__ import unicode_literals
import sys
from datetime import datetime
reload(sys)
sys.setdefaultencoding('utf-8')
now = datetime.now()
print now.strftime('%m月%d日 %H:%M')
正常执行
- 解决方案二: 使用byte string
#coding:utf-8
from __future__ import unicode_literals
from datetime import datetime
now = datetime.now()
print now.strftime(b'%m月%d日 %H:%M') # 指明为bytearray字符串
# 或者这样也行
t = bytearray('%m月 %d %H:%M', 'utf-8')
print now.strftime(str(t))
print now.strftime('%m月%d日 %H:%M'.encode('utf-8')) # 指明str类型字符串
参考:https://www.cnblogs.com/yuany66/p/11969690.html https://www.the5fire.com/unicodeencodeerror-from-future.html