一锋玲、math 模塊景用、cmath 模塊
Python 中數(shù)學(xué)運算常用的函數(shù)基本都在 math 模塊、cmath 模塊中惭蹂。
Python math 模塊提供了許多對浮點數(shù)的數(shù)學(xué)運算函數(shù)伞插。
Python cmath 模塊包含了一些用于復(fù)數(shù)運算的函數(shù)。
cmath 模塊的函數(shù)跟 math 模塊函數(shù)基本一致盾碗,區(qū)別是 cmath 模塊運算的是復(fù)數(shù)媚污,math 模塊運算的是數(shù)學(xué)運算。
要使用 math 或 cmath 函數(shù)必須先導(dǎo)入:
import math
查看 math 查看包中的內(nèi)容::
>>> import math
>>> dir(math)
['__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'ceil', 'copysign', 'cos', 'cosh', 'degrees', 'e', 'erf', 'erfc', 'exp', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gamma', 'gcd', 'hypot', 'inf', 'isclose', 'isfinite', 'isinf', 'isnan', 'ldexp', 'lgamma', 'log', 'log10', 'log1p', 'log2', 'modf', 'nan', 'pi', 'pow', 'radians', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'tau', 'trunc']
>>>
二廷雅、 Python數(shù)學(xué)函數(shù)
函數(shù) | 返回值 ( 描述 ) |
---|---|
abs(x) | 返回數(shù)字的絕對值耗美,如abs(-10) 返回 10 |
ceil(x) | 返回數(shù)字的上入整數(shù),如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) 返回2.718281828459045 |
fabs(x) | 返回數(shù)字的絕對值航缀,如math.fabs(-10) 返回10.0 |
floor(x) | 返回數(shù)字的下舍整數(shù)商架,如math.floor(4.9)返回 4 |
[log(x) | 如math.log(math.e)返回1.0,math.log(100,10)返回2.0 |
[log10(x) | 返回以10為基數(shù)的x的對數(shù),如math.log10(100)返回 2.0 |
[max(x1, x2,...) | 返回給定參數(shù)的最大值芥玉,參數(shù)可以為序列蛇摸。 |
[min(x1, x2,...) | 返回給定參數(shù)的最小值,參數(shù)可以為序列灿巧。 |
[modf(x) | 返回x的整數(shù)部分與小數(shù)部分皇型,兩部分的數(shù)值符號與x相同,整數(shù)部分以浮點型表示砸烦。 |
[pow(x, y) | x**y 運算后的值弃鸦。 |
[round(x [,n]) | 返回浮點數(shù)x的四舍五入值,如給出n值幢痘,則代表舍入到小數(shù)點后的位數(shù)唬格。 |
[sqrt(x) | 返回數(shù)字x的平方根 |
三、 Python隨機數(shù)函數(shù)
隨機數(shù)可以用于數(shù)學(xué),游戲购岗,安全等領(lǐng)域中汰聋,還經(jīng)常被嵌入到算法中,用以提高算法效率喊积,并提高程序的安全性烹困。
Python包含以下常用隨機數(shù)函數(shù):
函數(shù) | 描述 |
---|---|
choice(seq) | 從序列的元素中隨機挑選一個元素,比如random.choice(range(10))乾吻,從0到9中隨機挑選一個整數(shù)髓梅。 |
randrange ([start,] stop [,step]) | 從指定范圍內(nèi),按指定基數(shù)遞增的集合中獲取一個隨機數(shù)绎签,基數(shù)缺省值為1 |
random() | 隨機生成下一個實數(shù)枯饿,它在[0,1)范圍內(nèi)。 |
seed([x]) | 改變隨機數(shù)生成器的種子seed诡必。如果你不了解其原理奢方,你不必特別去設(shè)定seed,Python會幫你選擇seed爸舒。 |
shuffle(lst) | 將序列的所有元素隨機排序 |
uniform(x, y) | 隨機生成下一個實數(shù)蟋字,它在[x,y]范圍內(nèi)。 |
四扭勉、 Python三角函數(shù)
Python包括以下三角函數(shù):
函數(shù) | 描述 |
---|---|
acos(x) | 返回x的反余弦弧度值愉老。 |
asin(x) | 返回x的反正弦弧度值。 |
atan(x) | 返回x的反正切弧度值剖效。 |
atan2(y, x) | 返回給定的 X 及 Y 坐標(biāo)值的反正切值。 |
cos(x) | 返回x的弧度的余弦值焰盗。 |
hypot(x, y) | 返回歐幾里德范數(shù) sqrt(xx + yy)璧尸。 |
sin(x) | 返回的x弧度的正弦值。 |
tan(x) | 返回x弧度的正切值熬拒。 |
degrees(x) | 將弧度轉(zhuǎn)換為角度,如degrees(math.pi/2) 爷光, 返回90.0 |
radians(x) | 將角度轉(zhuǎn)換為弧度 |
五、 Python數(shù)學(xué)常量
常量 | 描述 |
---|---|
pi | 數(shù)學(xué)常量 pi(圓周率澎粟,一般以π來表示) |
e | 數(shù)學(xué)常量 e蛀序,e即自然常數(shù)(自然常數(shù))。 |