Python 3 中的 int() 和 floor() 有什么区别?

What is the difference between int() and floor() in Python 3?(Python 3 中的 int() 和 floor() 有什么区别?)
本文介绍了Python 3 中的 int() 和 floor() 有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

在 Python 2 中,floor() 返回一个浮点值.虽然对我来说不是很明显,但我找到了一些解释,阐明了为什么让 floor() 返回浮点数可能有用(对于像 float('inf') 和 <代码>浮动('nan')).

In Python 2, floor() returned a float value. Although not obvious to me, I found a few explanations clarifying why it may be useful to have floor() return float (for cases like float('inf') and float('nan')).

然而,在 Python 3 中,floor() 返回整数(并且对于前面提到的特殊情况返回溢出错误).

However, in Python 3, floor() returns integer (and returns overflow error for the special cases mentioned before).

那么 int()floor() 现在有什么区别?

So what is the difference, if any, between int() and floor() now?

推荐答案

floor() 循环 down.int() 截断.使用负数时区别很明显:

floor() rounds down. int() truncates. The difference is clear when you use negative numbers:

>>> import math
>>> math.floor(-3.5)
-4
>>> int(-3.5)
-3

对负数进行四舍五入意味着它们远离 0,截断使它们更接近 0.

Rounding down on negative numbers means that they move away from 0, truncating moves them closer to 0.

换句话说,floor() 总是会低于或等于原始值.int() 将接近于零或等于.

Putting it differently, the floor() is always going to be lower or equal to the original. int() is going to be closer to zero or equal.

这篇关于Python 3 中的 int() 和 floor() 有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

patching a class yields quot;AttributeError: Mock object has no attributequot; when accessing instance attributes(修补类会产生“AttributeError:Mock object has no attribute;访问实例属性时)
How to mock lt;ModelClassgt;.query.filter_by() in Flask-SqlAlchemy(如何在 Flask-SqlAlchemy 中模拟 lt;ModelClassgt;.query.filter_by())
FTPLIB error socket.gaierror: [Errno 8] nodename nor servname provided, or not known(FTPLIB 错误 socket.gaierror: [Errno 8] nodename nor servname provided, or not known)
Weird numpy.sum behavior when adding zeros(添加零时奇怪的 numpy.sum 行为)
Why does the #39;int#39; object is not callable error occur when using the sum() function?(为什么在使用 sum() 函数时会出现 int object is not callable 错误?)
How to sum in pandas by unique index in several columns?(如何通过几列中的唯一索引对 pandas 求和?)