當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。