预览加载中,请您耐心等待几秒...
1/8
2/8
3/8
4/8
5/8
6/8
7/8
8/8

在线预览结束,喜欢就下载吧,查找使用更方便

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

importmath dir(math) Out[2]: ['__doc__', '__name__', '__package__', 'acos',---反余弦 'acosh',---反双曲余弦 'asin',---反正弦 'asinh',---反双曲正弦 'atan',---反正切 'atan2',---math.atan(y,x),y/x的反正切 'atanh',---反双曲正切 'ceil',---返回>=x的最小整数,反floor 'copysign',---math.copysign(x,y),返回与y同号的x值(改变x值符号) 'cos',---余弦 'cosh',---反余弦 'degrees',---将弧长转化为角度,反radians 'e',---2。7128 'erf',---误差函数 'erfc',---1-erf 'exp',---e的x次方 'expm1',---e的x次方-1 'fabs',---绝对值 'factorial',---x阶乘 'floor',---返回<=x的最大整数,反ceil 'fmod',---返回x对y取模的余数,以x来决定余数的符号,%以y来决定余数的符号 'frexp',---反ldexp,frexp(x),返回m,n 'fsum',---返回x阵列各项和,例math.frexp([2,5]) 'gamma',---伽马函数 'hypot',---hypot(x,y)平方和开根号 'isinf',---是否为正负无穷大,是则true 'isnan',---x=NaN,true,x为0也返回false 'ldexp',---ldexp(x,y),输出m*2的n次方,反frexp 'lgamma',---伽马函数的自然对数 'log',---log(x,a),a不写则为e 'log10',---log10(x) 'log1p',---返回 'modf',---返回x的小数部份与整数部份,似trunc 'pi',---π 'pow',---返回xy 'radians',---將x(角度)转成弧长,与degrees为反函数 'sin',---正弦 'sinh',---反正弦 'sqrt',---开根号 'tan',---正切 'tanh',---反正切 'trunc']---返回x的整数部份,等同int,似modf 两个常量pi,e 举例: math.fmod(5,3) Out[12]:2.0 In[14]:math.fmod(-5,3) Out[14]:-2.0 In[15]:math.fmod(5,-3) Out[15]:2.0 In[16]:math.fmod(-5,-3) Out[16]:-2.0 5%3 Out[17]:2 5%(-3) Out[19]:-1 -5%3 Out[20]:1 -5%(-3) Out[21]:-2 官方文档: 9.2.math—Mathematicalfunctions Thismoduleisalwaysavailable.ItprovidesaccesstothemathematicalfunctionsdefinedbytheCstandard. Thesefunctionscannotbeusedwithcomplexnumbers;usethefunctionsofthesamenamefromthecmathmoduleifyourequiresupportforcomplexnumbers.Thedistinctionbetweenfunctionswhichsupportcomplexnumbersandthosewhichdon’tismadesincemostusersdonotwanttolearnquiteasmuchmathematicsasrequiredtounderstandcomplexnumbers.Receivinganexceptioninsteadofacomplexresultallowsearlierdetectionoftheunexpectedcomplexnumberusedasaparameter,sothattheprogrammercandeterminehowandwhyitwasgeneratedinthefirstplace. Thefollowingfunctionsareprovidedbythismodule.Exceptwhenexplicitlynotedotherwise,allreturnvaluesarefloats. 9.2.1.Number-theoreticandrepresentationfunctions math.ceil(