标签: python
Python math.prod() 方法
Python math.prod() 方法用于计算可迭代对象中所有元素的…
Python math.pow() 方法
Python math.pow(x, y) 方法返回返回 x 的 y 次…
Python math.perm() 方法
Python math.perm(x, i) 方法返回不重复且有顺序地从…
Python math.log2() 方法
Python math.log2(x) 方法返回 x 以 2 为底的对数…
Python math.log1p() 方法
Python math.log1p(x) 方法返回 1+x 的自然对数(…
Python math.log10() 方法
Python math.log10(x) 方法返回 x 以 10 为底的…
Python math.log() 方法
Python math.log(x) 方法使用一个参数,返回 x 的自然…
Python math.lgamma() 方法
Python math.lgamma(x) 方法返回一个数字的自然对数伽…
Python math.frexp() 方法
Python math.frexp(x) 方法以 (m, e) 对的形式…
Python math.ldexp() 方法
Python math.ldexp(x, i) 方法返回 x * (2*…