三種取整方式:
一、向下取整:即捨去小數點後所有資料。int (n),例如:
int(3.67) #figure out 3
二、四捨五入:round(n),例如:
round(4.56) #figure out 5
round(-4.56) #figure out -5
round(-4.23) #figure out -4
**round函式並不精確,問題詳見「python筆記:round()函式及相關」
三、向上取整:即捨去小數點後所有資料,並向上進1。import math math.ceil(n),例如:
import math
math.ceil(5.44) #figure out 6
math.ceil(5.56) #figure out 6
math.ceil(-4.56) #figure out -4
python取整函式
1.int 向下取整 內建函式 1 n 3.75 2 print int n 3 3 n 3.25 4 print int n 3 2.round 四捨五入 內建函式 1 n 3.75 2 print round n 4 3 n 3.25 4 print round n floor 向下取整 mat...
python 取整函式
向下取整的運算稱為floor,用數學符號 表示 向上取整的運算稱為ceiling,用數學符號 表示。例如 59 60 0 59 60 1 59 60 1 59 60 0 向上向下 取整函式數隻會對小數點後面的 數字不為零 的數進行操作,要是給它乙個整數 它就返回整數本身 對小數不為零的數操作 給定 ...
Python學習筆記 函式
1.基本呼叫 python 中的函式使用關鍵字 def 來建立乙個函式,正如其他語言中的函式一樣,有函式名,引數,以及返回值。函式的引數不用指定型別,return 可以在任何地方出現,表示函式結束,如果沒有返回內容則預設返回值為none。乙個簡單的無引數,無返回值的hello world def h...