如何使用python中的取整floor函式?

2021-10-12 08:45:39 字數 1055 閱讀 2412

如果一工程通過公式計算得出需要7.1輛汽車,直接取整成7輛肯定是完不成任務的,所以只有向上捨入成8才可以,即取整成7,再加1。取整加1,就是向上捨入成整數。相反,如果取整減1,那就是向下捨入成整數,即向下取整。今天,我們就來認識一下python中向下取整函式floor函式。

得到最接近原數但是小於原數的部分

2、語法

import math

math.floor(x)

注意:floor() 函式需要匯入 math 模組才能訪問,通過靜態物件呼叫該方法。

3、引數

x 數值表示式

4、返回值

返回數字的下舍整數。

5、使用

import math  #這將匯入math模組

print

("math.floor(-45.7):"

,math.floor(

-45.7))

print

("math.floor(45.7):"

,math.floor(

45.7))

print

("math.floor(-100.5):"

,math.floor(

-100.5))

print

("math.floor(100.5):"

,math.floor(

100.5

))

輸出

math.floor(

-45.7):

-46math.floor(

45.7):

45math.floor(

-100.5):

-101

math.floor(

100.5):

100

以上就是向下取整函式的介紹,這個方法很方便,大家是可以輕鬆掌握的,要操作熟練哦~

matlab matlab中如何取整

matlab中取整一直是個老大難的問題,這個問題也曾經困擾著我。經過筆者一次成功的嘗試後,我終於學會了matlab中取整的方法,下面就介紹給大家 大概是有如下幾種方法 round 四捨五入 floor 向下取整 ceil 向上取整 fix 往靠近0的取整 下面是幾個例項及結果 a floor 3.5...

Python取整的方法

python自帶的int 取整 int 1.2 1 int 2.8 2 int 0.1 0 int 5.6 5總結 int 函式是 向0取整 取整方向總是讓結果比小數的絕對值更小 import math math.ceil 0.6 1 math.ceil 1.1 2 math.ceil 3.0 3 ...

php 除法,php中如何除法取整

php中除法取整的方法 1 使用 round 函式對浮點數進行四捨五入 2 使用 ceil 函式向上捨入為最接近的整數 3 使用 floor 函式向下捨入為最接近的整數。php中除法取整的方法 1.round 四捨五入 round 函式對浮點數進行四捨五入。說明 返回將 x 根據指定精度 prec ...