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
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)