python math模塊使用方法介紹

math常用方法

1.math.ceil()向上取整

import math
print(math.ceil(56.1))

57

2.math.floor()向下取整

import math
print(math.floor(56.1))

56

3.math.fabs()取絕對值

import math
print(math.fabs(56))
print(math.fabs(-56))

56.0
56.0

4.math.fmod()求模運算

import math
print(math.fmod(56,2))

0.0

5.math.isnan()判斷是不是(nan)不是一個數字

import math
print(math.isnan(56))
print(math.isnan(math.nan))

False
True

註意:不是數字則返回Ture,是數字則返回Flase

6.math.isinf()判斷是不是無窮大

import math
print(math.isinf(56))
print(math.isinf(math.inf))

False
True

註意:正無窮大或負無窮大則返回Ture,否則返回Flase

7.math.isfinite()判斷是不是無限

8.math.e 屬性,自然常數

返回歐拉數

9.math.pi 圓周率

返回圓周率

import math
print(math.e)
print(math.pi)

2.718281828459045
3.141592653589793

10.math.power 冪次方

11.math.sqrt 開平方根

import math
print(math.pow(2,2))
print(math.sqrt(4))

4.0
2.0

到此這篇關於python math模塊使用方法介紹的文章就介紹到這瞭,更多相關python math模塊內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: