Python Math ceil() 函数
Python Math ceil(x) 函数返回一个大于或等于 x 的的最小整数。
Python Math ceil() 语法
以下是 ceil() 方法的语法:
import math
math.ceil( x )
注意:ceil()是不能直接访问的,需要导入 math 模块,通过静态对象调用该方法。
Python Math ceil() 参数
x – 数值表达式。
Python Math ceil() 返回值
函数返回返回一个大于或等于 x 的的最小整数。
Python Math ceil() 示例1
以下展示了使用 ceil() 方法的实例:
#!/usr/bin/python3
import math
x = 33.7
# returning the ceil of 33.7
print ("The ceil of 33.7 is : ", end ="")
print (math.ceil(x))
输出:
Python Math ceil() 示例2
#!/usr/bin/python3
import math
# prints the ceil using ceil() method
print ("math.ceil(-13.1) : ", math.ceil(-13.1))
print ("math.ceil(101.96) : ", math.ceil(101.96))
输出:
Python Math ceil() 示例3
#!/usr/bin/python3
import math # 导入 math 模块
print ("math.ceil(math.pi) : ", math.ceil(math.pi))
输出: