Python math.ceil() 函数

返回上一级

Python math.ceil() 函数返回数字的上入整数,俗称天花板取整

导入模块

import math

语法

math.ceil( x )

参数

参数 说明
x 数值表达式

返回值

返回数字的上入整数

范例

下面的代码使用 math.ceil() 函数向上取整数值

>>> import math
>>> math.ceil(-45.17)
-45.0
>>> math.ceil(100.12)
101.0
>>> math.ceil(100.72)
101.0
>>> math.ceil(119L)
119.0
>>> math.ceil(119L)
119.0

返回上一级

Python2 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.