Python中常用的取整函数有int()
和math.floor()
。int()
函数直接截断小数部分,而math.floor()
则返回不大于输入参数的最大整数。这两个函数在处理正数时结果相同,但在处理负数时会有差异。
Python提供了几种内置的取整函数,包括round()
,math.floor()
,math.ceil()
和math.trunc()
。
round(number[, ndigits])
:返回最接近输入值的整数,如果有两个等距的整数,则返回偶数,可以指定小数点后的位数。
math.floor(x)
:返回小于或等于x的最大整数。
math.ceil(x)
:返回大于或等于x的最小整数。
math.trunc(x:Real) > Int
:返回x的整数部分。
以下是一些示例代码:
import math 使用 round() 函数 print(round(3.14159)) # 输出:3 print(round(3.14159, 2)) # 输出:3.14 使用 math.floor() 函数 print(math.floor(3.14159)) # 输出:3 使用 math.ceil() 函数 print(math.ceil(3.14159)) # 输出:4 使用 math.trunc() 函数 print(math.trunc(3.14159)) # 输出:3
下面是一个介绍,展示了Python中取整函数的使用示例。
int()
int(3.7)
3
math.floor()
import math; math.floor(3.7)
3
math.ceil()
import math; math.ceil(3.7)
4
round()
round(3.7)
4
round()
round(3.14159, 2)
3.14
请注意,int()
和math.floor()
都会向下取整,而math.ceil()
和round()
会分别向上取整和四舍五入。
示例代码需要在Python环境中执行,以获取相应的输出结果。
本文来源于互联网,如若侵权,请联系管理员删除,本文链接:https://www.9969.net/11966.html