python取整函数 示例函数(Python

Python中常用的取整函数int()math.floor()int()函数直接截断小数部分,而math.floor()则返回不大于输入参数的最大整数。这两个函数在处理正数时结果相同,但在处理负数时会有差异。

Python提供了几种内置的取整函数,包括round(),math.floor(),math.ceil()math.trunc()

python取整函数 示例函数(Python插图1

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中取整函数的使用示例。

python取整函数 示例函数(Python插图3

函数名 描述 示例代码 输出结果 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环境中执行,以获取相应的输出结果。

python取整函数 示例函数(Python插图5

本文来源于互联网,如若侵权,请联系管理员删除,本文链接:https://www.9969.net/11966.html

至强防御至强防御
上一篇 2024年6月24日 01:30
下一篇 2024年6月24日 01:30

相关推荐