🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# math – 数学函数 该模块实现了相应CPython模块的子集,如下所述。有关更多信息,请参阅原始CPython文档:[math](https://docs.python.org/3.5/library/math.html#module-math). `math`模块提供了一些处理浮点数的基本数学函数。 ## 1. 函数 ### 1.1. 返回`x`的反余弦值。 ``` math.acos(x) ``` ### 1.2. 返回`x`的反双曲余弦值。 ``` math.acosh(x) ``` ### 1.3. 返回`x`的反正弦。 ``` math.asin(x) ``` ### 1.4. 返回`x`的反双曲正弦值。 ``` math.asinh(x) ``` ### 1.5. 返回`x`的反正切。 ``` math.atan(x) ``` ### 1.6. 返回`y`/`x`的反正切的主值。 ``` math.atan2(y, x) ``` ### 1.7. 返回`x`的反双曲正切。 ``` math.atanh(x) ``` ### 1.8. 返回一个整数,“x”向正无穷大四舍五入。 ``` math.ceil(x) ``` ### 1.9. 以`y`的符号返回`x`。 ``` math.copysign(x, y) ``` ### 1.10. 返回`x`的余弦。 ``` math.cos(x) ``` ### 1.11. 返回`x`的双曲余弦值 ``` math.cosh(x) ``` ### 1.12. 返回弧度`x`转换为度数。 ``` math.degrees(x) ``` ### 1.13. 返回`x`的错误函数。 ``` math.erf(x) ``` ### 1.14. 返回`x`的互补误差函数。 ``` math.erfc(x) ``` ### 1.15. 返回`x`的指数。 ``` math.exp(x) ``` ### 1.16. 返回`exp(x) - 1`。 ``` math.expm1(x) ``` ### 1.17. 返回`x`的绝对值。 ``` math.fabs(x) ``` ### 1.18. 返回一个整数,“x”向负无穷大舍入。 ``` math.floor(x) ``` ### 1.19. 返回`x`/`y`的余数。 ``` math.fmod(x, y) ``` ### 1.20. 将浮点数分解为尾数和指数。 返回的值是元组`(m,e)`,使得`x == m * 2 ** e`完全正确。如果`x == 0`则函数返回`(0.0,0)`,否则关系`0.5 <= abs(m)<1`成立。 ``` math.frexp(x) ``` ### 1.21. 返回`x`的伽玛函数。 ``` math.gamma(x) ``` ### 1.22. 如果`x`是有限的,则返回True。 ``` math.isfinite(x) ``` ### 1.23. 如果`x`是无限的,则返回True。 ``` math.isinf(x) ``` ### 1.24. 如果`x`不是数字,则返回True ``` math.isnan(x) ``` ### 1.25. 返回`x *(2 ** exp)`。 ``` math.ldexp(x, exp) ``` ### 1.26. 返回`x`的伽玛函数的自然对数。 ``` math.lgamma(x) ``` ### 1.27. 返回`x`的自然对数。 ``` math.log(x) ``` ### 1.28. 返回`x`的以10为底的对数。 ``` math.log10(x) ``` ### 1.29. 返回`x`的base-2对数。 ``` math.log2(x) ``` ### 1.30. 返回两个浮点数的元组,是“x”的分数和整数部分。两个返回值都与`x`具有相同的符号。 ``` math.modf(x) ``` ### 1.31. 将`x`返回到'y`的幂。 ``` math.pow(x, y) ``` ### 1.32. 返回度数`x`转换为弧度。 ``` math.radians(x) ``` ### 1.33. 返回`x`的正弦值。 ``` math.sin(x) ``` ### 1.34. 返回`x`的双曲正弦值。 ``` math.sinh(x) ``` ### 1.35. 返回`x`的平方根。 ``` math.sqrt(x) ``` ### 1.36. 返回`x`的正切值。 ``` math.tan(x) ``` ### 1.37. 返回`x`的双曲正切。 ``` math.tanh(x) ``` ### 1.38. 返回一个整数,“x”向0舍入。 ``` math.trunc(x) ``` ## 2. Constants ### 2.1. 自然对数的基础 ### math.e ### 2.2. 圆周长与直径的比值 ### math.pi