当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python math.ceil()用法及代码示例


在Python中,数学模块包含许多数学运算,可以使用该模块轻松执行。math.ceil()函数返回大于整数的最小整数值。如果number已经是整数,则返回相同的数字。

用法: math.ceil(x)

参数:
x: This is a numeric expression.

返回:  Smallest integer not less than x.

代码1:

# Python code to demonstrate the working of ceil() 
    
# importing "math" for mathematical operations  
import math  
    
x = 33.7
    
# returning the ceil of 33.7 
print ("The ceil of 33.7 is:", end ="")  
print (math.ceil(x))
输出:
The ceil of 33.7 is:34


代码2:

# Python code to demonstrate the working of ceil() 
    
# importing "math" for mathematical operations  
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))
输出:
math.ceil(-13.1): -13
math.ceil(101.96): 102


相关用法


注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Python | math.ceil() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。