博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
from __future__ import division
阅读量:5089 次
发布时间:2019-06-13

本文共 1342 字,大约阅读时间需要 4 分钟。

导入python未来支持的语言特征division(精确除法),当我们没有在程序中导入该特征时,"/"操作符执行的是截断除法(Truncating Division),当我们导入精确除法之后,"/"执行的是精确除法,如下所示:
---------------------------------------------------------------------------------------------

>>> 3/4

0

>>> from __future__ import division

>>> 3/4

0.75

--------------------------------------------------------------------------------------------

导入精确除法后,若要执行截断除法,可以使用"//"操作符:
--------------------------------------------------------------------------------------------
>>> 3//4
0
--------------------------------------------------------------------------------------------
 
一些将来特征如下:
feature optional in mandatory in effect
nested_scopes 2.1.0b1 2.2 Statically Nested Scopes
generators 2.2.0a1 2.3 Simple Generators
division 2.2.0a2 3.0 Changing the Division Operator
absolute_import 2.5.0a1 2.7 Imports: Multi-Line and Absolute/Relative
with_statement 2.5.0a1 2.6 The “with” Statement
print_function 2.6.0a2 3.0 Make print a function
unicode_literals 2.6.0a2 3.0 Bytes literals in Python 3000
PEP:Python Enhancement Proposals
可以在这个地方找到很多PEP: 里面还能看到许多提议的动机
---------------------------------------------------------------------------- nested_scopes: 改变名空间的搜索过程
generators:使用生成器.能够产生能保存当前状态的函数.
division:精确的除法
absolute_import:包含绝对路径.方便include
with_statement:安全的打开文件
 

转载于:https://www.cnblogs.com/wjoyxt/p/4554477.html

你可能感兴趣的文章
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
jQuery如何获得select选中的值?input单选radio选中的值
查看>>
设计模式 之 享元模式
查看>>
如何理解汉诺塔
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
15 FFT及其框图实现
查看>>
Linux基本操作
查看>>
osg ifc ifccolumn
查看>>
C++ STL partial_sort
查看>>
3.0.35 platform 设备资源和数据
查看>>
centos redis 安装过程,解决办法
查看>>
IOS小技巧整理
查看>>
WebDriverExtensionsByC#
查看>>
我眼中的技术地图
查看>>
lc 145. Binary Tree Postorder Traversal
查看>>
sublime 配置java运行环境
查看>>
在centos上开关tomcat
查看>>
重启rabbitmq服务
查看>>