美文网首页Python
Python中Math模块的函数使用

Python中Math模块的函数使用

作者: 小哲1998 | 来源:发表于2020-03-06 18:06 被阅读0次
    函数名 函数内容
    math.ceil(x) 返回 x 的上限,即大于或者等于 x 的最小整数
    math.comb(n, k) 返回不重复且无顺序地从 n 项中选择 k 项的方式总数
    math.copysign(x, y) 返回一个基于 x 的绝对值和 y 的符号的浮点数
    math.fabs(x) 返回 x 的绝对值
    math.factorial(x) 以一个整数返回 x 的阶乘
    math.floor(x) 返回 x 的向下取整,小于或等于 x 的最大整数
    math.gcd(a, b) 返回整数 a 和 b 的最大公约数
    math.isfinite(x) 如果 x 既不是无穷大也不是NaN,则返回 True ,否则返回 False
    math.isinf(x) 如果 x 是正或负无穷大,则返回 True ,否则返回 False
    math.isnan(x) 如果 x 是 NaN(不是数字),则返回 True ,否则返回 False
    math.isqrt(n) 返回非负整数 n 的整数平方根
    math.modf(x) 返回 x 的小数和整数部分,以数组的形式储存
    math.perm(n, k) 返回不重复且无顺序地从 n 项中选择 k 项的方式总数
    math.prod(iterable, *, start=1) 计算输入的 iterable 中所有元素的积, 积的默认 start 值为 1
    math.exp(x) 返回 e 次 x 幂
    math.expm1(x) 返回 e 的 x 次幂,减1
    math.log(x[, base]) 使用一个参数,返回 x 的自然对数(底为 e ) ,使用两个参数,返回给定的 base 的对数 x ,计算为 log(x)/log(base)
    math.log1p(x) 返回 1+x (base e) 的自然对数
    math.log2(x) 返回 x 以2为底的对数,这通常比 log(x, 2) 更准确
    math.pow(x, y) 返回 x 的 y 次幂
    math.sqrt(x) 返回 x 的平方根
    math.acos(x) 以弧度为单位返回 x 的反余弦值
    math.asin(x) 以弧度为单位返回 x 的反正弦值
    math.atan(x) 以弧度为单位返回 x 的反正切值
    math.atan2(y, x) 以弧度为单位返回 atan(y / x)
    math.cos(x) 返回 x 弧度的余弦值
    math.dist(p, q) 返回 p 与 q 两点之间的欧几里得距离,以一个坐标序列(或可迭代对象)的形式给出。 两个点必须具有相同的维度
    math.sin(x) 返回 x 弧度的正弦值
    math.tan(x) 返回 x 弧度的正切值
    math.degrees(x) 将角度 x 从弧度转换为度数
    math.radians(x) 将角度 x 从度数转换为弧度
    math.acosh(x) 返回 x 的反双曲余弦值
    math.asinh(x) 返回 x 的反双曲正弦值
    math.atanh(x) 返回 x 的反双曲正切值
    math.cosh(x) 返回 x 的双曲余弦值
    math.sinh(x) 返回 x 的双曲正弦值
    math.tanh(x) 返回 x 的双曲正切值
    math.gamma(x) 返回 x 处的 伽马函数 值。
    math.lgamma(x) 返回Gamma函数在 x 绝对值的自然对数。

    常数

    代码 含义
    math.pi 数学常数 π = 3.141592...,精确到可用精度。
    math.e 数学常数 e = 2.718281...,精确到可用精度。
    math.tau 数学常数 τ = 6.283185...,精确到可用精度。Tau 是一个圆周常数,等于 2π,圆的周长与半径之比。

    其他

    代码 含义
    math.inf 浮点正无穷大。
    math.nan 浮点“非数字”(NaN)值。

    来源:http://shouce.jb51.net/python3.8/library/math.html

    相关文章

      网友评论

        本文标题:Python中Math模块的函数使用

        本文链接:https://www.haomeiwen.com/subject/mpgwrhtx.html