python-数字运算

先贴出参考资料地址:http://www.runoob.com/python3/python3-number.html


Python math 模块、cmath 模块

Python 中数学运算常用的函数基本都在 math 模块、cmath 模块中。

Python math 模块提供了许多对浮点数的数学运算函数。

Python cmath 模块包含了一些用于复数运算的函数。

cmath 模块的函数跟 math 模块函数基本一致,区别是 cmath 模块运算的是复数,math 模块运算的是数学运算。

要使用 math 或 cmath 函数必须先导入:

猜你喜欢

转载自blog.csdn.net/weixin_42483560/article/details/84871309