标签: python
Python math.isqrt() 方法
Python math.isqrt(x) 方法返回 x 的平方根,并将平…
Python math.isnan() 方法
Python math.isnan() 方法判断数字是否为 NaN(非数…
Python math.isinf() 方法
Python math.isinf() 方法判断 x 是否是无穷大,如果…
Python math.isfinite() 方法
Python math.isfinite() 方法判断 x 是否有限,如…
Python math.isclose() 方法
Python math.isclose() 方法返回用于检查两个值是否彼…
Python math.hypot() 方法
Python math.hypot() 方法返回欧几里得范数。 欧几里得…
Python math.gcd() 方法
Python math.gcd() 方法返回给定的整数参数的最大公约数。…
Python math.gamma() 方法
Python math.gamma(x) 方法返回 x 处的伽玛函数(G…
Python math.fsum() 方法
Python math.fsum(iterable) 方法计算可迭代对象…
Python math.frexp() 方法
Python math.frexp(x) 方法以 (m, e) 对的形式…