码迷,mamicode.com
首页 > 编程语言 > 详细

Python使用__future__

时间:2015-06-26 09:25:29      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:python

Python的新版本会引入新的功能,但是,实际上这些功能在上一个老版本中就已经存在了。要“试用”某一新的特性,就可以通过导入__future__模块的某些功能来实现。

例如,Python 2.7的整数除法运算结果仍是整数:

>>> 10 / 3
3

但是,Python 3.x已经改进了整数的除法运算,“/”除将得到浮点数,“//”除才仍是整数:

>>> 10 / 3
3.3333333333333335
>>> 10 // 3
3

要在Python 2.7中引入3.x的除法规则,导入__future__division

>>> from __future__ import division
>>> print 10 / 3
3.3333333333333335

当新版本的一个特性与旧版本不兼容时,该特性将会在旧版本中添加到__future__中,以便旧的代码能在旧版本中测试新特性。

任务

Python 3.x中,字符串统一为unicode,不需要加前缀 u,而以字节存储的str则必须加前缀 b。请利用__future__unicode_literals在Python 2.7中编写unicode字符串。

 

?不会了怎么办

使用from __future__ import unicode_literals将把Python 3.xunicode规则带入Python 2.7中。

参考代码:

from __future__ import unicode_literals
s = ‘am I an unicode?‘
print isinstance(s, unicode)

Python使用__future__

标签:python

原文地址:http://blog.csdn.net/qq_20480611/article/details/46641097

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!