python 向上 向下 就近取整
2021/11/24 22:13:49
本文主要是介绍python 向上 向下 就近取整,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
向上取整
ceil() 函数返回数字的向上取整整数,就是返回大于等于变量的最近的整数。
ceil()是不能直接访问的,需要导入 math 模块。
>>> import math
>>> print(math.ceil(5.1))
6
>>> print(math.ceil(5.5))
6
>>> print(math.ceil(5.6))
6
>>>
向下取整
floor(x) 返回数字的下舍整数,小于或等于 x
>>> print(math.floor(5.1))
5
>>> print(math.floor(5.5))
5
>>> print(math.floor(5.6) )
5
>>>
就近取整
round(X)是内战函数,将浮点数圆整为与之最接近的整数,并且在与两边整数一样近的时候圆整到偶数
>>> print(round(4.1))
4
>>> print(round(4.5))
4
>>> print(round(5.5))
6
>>> print(round(4.6))
5
>>>
这篇关于python 向上 向下 就近取整的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-14Python编程入门指南
- 2024-11-13Python基础教程
- 2024-11-12Python编程基础指南
- 2024-11-12Python基础编程教程
- 2024-11-08Python编程基础与实践示例
- 2024-11-07Python编程基础指南
- 2024-11-06Python编程基础入门指南
- 2024-11-06怎么使用python 计算两个GPS的距离功能-icode9专业技术文章分享
- 2024-11-06Python 基础编程入门教程
- 2024-11-05Python编程基础:变量与类型