1.math简介 >>>import math #导入math模块 >>>dir(math) #这句可查看所有函数名列表 >>>help(math) #查看具体定义及函数原型 2.常用函数 acos(x) # Return the arc cosine (measured in radians) of x. asin(x) # Return the arc sine (measured in radians) of x. atan(x) # Ret
math 模块提供对浮点数学的底层C库函数的访问,常用的成员包括: math.ceil(x):返回 x 的上限,即大于或者等于 x 的最小整数 math.floor(x):返回 x 的向下取整,小于或等于 x 的最大整数. math.copysign(x, y):返回一个基于 x 的绝对值和 y 的符号的浮点数.在支持带符号零的平台上,copysign(1.0, -0.0) 返回 -1.0. math.fabs(x):返回 x 的绝对值. math.factorial(x):以一个整数返回 x
from math import log from numpy import *import operator ............ re = log(pro,2) ............ TypeError: return arrays must be of ArrayType 把“from math import log”放在最后 from numpy import *import operatorfrom math import log ............ re = log(p