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


Python math.floor()用法及代碼示例


在Python中,數學模塊包含許多數學運算,可以使用該模塊輕鬆執行。math.floor()函數返回不大於x的最大整數。如果number已經是整數,則返回相同的數字。

用法: math.floor(x)

參數:
x: This is a numeric expression.

返回:  largest integer not greater than x.

代碼1:

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


代碼2:

# Python code to demonstrate the working of floor() 
    
# importing "math" for mathematical operations  
import math  
    
# prints the floor using floor() method  
print ("math.floor(-13.1):", math.floor(-13.1)) 
print ("math.floor(101.96):", math.floor(101.96))
輸出:
math.floor(-13.1): -14
math.floor(101.96): 101


相關用法


注:本文由純淨天空篩選整理自Shivam_k大神的英文原創作品 Python | math.floor() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。