數學函式
abs()函式
描述abs()函式返回數字的絕對值
語法:abs(x)
引數x :數值表示式,可以是整數,浮點數,複數
返回值函式返回x(數字)的絕對值,如果引數是乙個複數,則返回它的大小
[root@localhost ~]#vi test.py#!/usr/bin/python
print ("abs(-40):",abs(-40))print("abs(100.10):",abs(100.10))
[root@localhost~]#./test.py
abs(-40): 40abs(100.10): 100.1
ceil()函式
描述ceil(x)函式返回乙個大於或等於x的最小整數
語法import math
math.ceil(x)
注意:ceil()是不能直接訪問的,需要匯入 math 模組,通過靜態物件呼叫該方法。
引數:x:數值表示式
返回值函式返回,返回乙個大於或等於x的最小整數
[root@localhost ~]#cat test.py#!/usr/bin/python
import math #匯入 math 模組
print ("math.ceil(-45.17) :", math.ceil(-45.17))print ("math.ceil(100.12) :", math.ceil(100.12))print ("math.ceil(100.72) :", math.ceil(100.72))print ("math.ceil(math.pi) :", math.ceil(math.pi))
[root@localhost~]#./test.py
math.ceil(-45.17) : -45math.ceil(100.12) : 101math.ceil(100.72) : 101math.ceil(math.pi) :4
exp()函式
描述:exp()方法返回x的指數,ex
語法:import math
math.exp(x)
注意:exp()是不能直接訪問的,需要匯入 math 模組,通過靜態物件呼叫該方法。
引數x:數值表示式
返回值返回x的指數,ex
[root@localhost ~]#cat test.py#!/usr/bin/python
import math #匯入 math 模組
print ("math.exp(-45.17) :", math.exp(-45.17))print ("math.exp(100.12) :", math.exp(100.12))print ("math.exp(100.72) :", math.exp(100.72))print ("math.exp(math.pi) :", math.exp(math.pi))
[root@localhost~]#./test.py
math.exp(-45.17) : 2.4150062132629406e-20math.exp(100.12) : 3.0308436140742566e+43math.exp(100.72) : 5.522557130248187e+43math.exp(math.pi) :23.140692632779267
fabs()函式
描述:fabs() 方法返回數字的絕對值,如math.fabs(-10) 返回10.0。
fabs() 函式類似於 abs() 函式,但是他有兩點區別:
abs() 是內建函式。 fabs() 函式在 math 模組中定義。
fabs() 函式只對浮點型跟整型數值有效。 abs() 還可以運用在複數中。
語法:import math
math.fabs(x)
注意:fabs()是不能直接訪問的,需要匯入 math 模組,通過靜態物件呼叫該方法。
引數x:數值表示式
返回值返回數字的絕對值
[root@localhost ~]#cat test.py#!/usr/bin/python
import math #匯入 math 模組
print ("math.fabs(-45.17) :", math.fabs(-45.17))print ("math.fabs(100.12) :", math.fabs(100.12))print ("math.fabs(100.72) :", math.fabs(100.72))print ("math.fabs(math.pi) :", math.fabs(math.pi))
[root@localhost~]#./test.py
math.fabs(-45.17) : 45.17math.fabs(100.12) : 100.12math.fabs(100.72) : 100.72math.fabs(math.pi) :3.141592653589793
end
Python數學函式
函式 返回值 描述 abs x 返回數字的絕對值,如abs 10 返回 10 ceil x 返回數字的上入整數,如math.ceil 4.1 返回 5 cmp x,y 如果 x y 返回 1,如果 x y 返回 0,如果 x y 返回 1 exp x 返回e的x次冪 ex 如math.exp 1 返...
Python數學函式
函式 返回值 描述 abs x 返回數字的絕對值,如abs 10 返回 10 ceil x 返回數字的上入整數,如math.ceil 4.1 返回 5 cmp x,y 如果 x y 返回 1,如果 x y 返回 0,如果 x y 返回 1 exp x 返回e的x次冪 ex 如math.exp 1 返...
Python 數學函式
函式 返回值 描述 abs x 返回數字的絕對值,如abs 10 返回 10 ceil x 返回數字的上入整數,如math.ceil 4.1 返回 5 cmp x,y 如果 x y 返回 1,如果 x y 返回 0,如果 x y 返回 1。python 3 已廢棄。使用使用 x y x exp x ...