脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - python math模块使用方法介绍

python math模块使用方法介绍

2022-08-20 09:36魏大橙 Python

math库是python的内置数学类函数库,支持整数和浮点数运算,math模块下的函数,返回值均为浮点数,除非有说明,math模块提供类似C语言标准定义的数学函数

math常用方法

1.math.ceil()向上取整

?
1
2
import math
print(math.ceil(56.1))

57

2.math.floor()向下取整

?
1
2
import math
print(math.floor(56.1))

56

3.math.fabs()取绝对值

?
1
2
3
import math
print(math.fabs(56))
print(math.fabs(-56))

56.0
56.0

4.math.fmod()求模运算

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

0.0

5.math.isnan()判断是不是(nan)不是一个数字

?
1
2
3
import math
print(math.isnan(56))
print(math.isnan(math.nan))

False
True

注意:不是数字则返回Ture,是数字则返回Flase

6.math.isinf()判断是不是无穷大

?
1
2
3
import math
print(math.isinf(56))
print(math.isinf(math.inf))

False
True

注意:正无穷大或负无穷大则返回Ture,否则返回Flase

7.math.isfinite()判断是不是无限

8.math.e 属性,自然常数

返回欧拉数

9.math.pi 圆周率

返回圆周率

?
1
2
3
import math
print(math.e)
print(math.pi)

2.718281828459045
3.141592653589793

10.math.power 幂次方

11.math.sqrt 开平方根

?
1
2
3
import math
print(math.pow(2,2))
print(math.sqrt(4))

4.0
2.0

到此这篇关于python math模块使用方法介绍的文章就介绍到这了,更多相关python math模块内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/Thewei666/article/details/125815275

延伸 · 阅读

精彩推荐