Python——built-in module Help: math
Help on built-in module math:
NAME
math
DESCRIPTION
This module is always available. It provides access to the
mathematical functions defined by the C standard.
FUNCTIONS
acos(...)
acos(x) Return the arc cosine (measured in radians) of x. acosh(...)
acosh(x) Return the inverse hyperbolic cosine of x. asin(...)
asin(x) Return the arc sine (measured in radians) of x. asinh(...)
asinh(x) Return the inverse hyperbolic sine of x. atan(...)
atan(x) Return the arc tangent (measured in radians) of x. atan2(...)
atan2(y, x) Return the arc tangent (measured in radians) of y/x.
Unlike atan(y/x), the signs of both x and y are considered. atanh(...)
atanh(x) Return the inverse hyperbolic tangent of x. ceil(...)
ceil(x) Return the ceiling of x as an Integral.
This is the smallest integer >= x. copysign(...)
copysign(x, y) Return a float with the magnitude (absolute value) of x but the sign
of y. On platforms that support signed zeros, copysign(1.0, -0.0)
returns -1.0. cos(...)
cos(x) Return the cosine of x (measured in radians). cosh(...)
cosh(x) Return the hyperbolic cosine of x. degrees(...)
degrees(x) Convert angle x from radians to degrees. erf(...)
erf(x) Error function at x. erfc(...)
erfc(x) Complementary error function at x. exp(...)
exp(x) Return e raised to the power of x. expm1(...)
expm1(x) Return exp(x)-1.
This function avoids the loss of precision involved in the direct evaluation of exp(x)-1 for small x. fabs(...)
fabs(x) Return the absolute value of the float x. factorial(...)
factorial(x) -> Integral Find x!. Raise a ValueError if x is negative or non-integral. floor(...)
floor(x) Return the floor of x as an Integral.
This is the largest integer <= x. fmod(...)
fmod(x, y) Return fmod(x, y), according to platform C. x % y may differ. frexp(...)
frexp(x) Return the mantissa and exponent of x, as pair (m, e).
m is a float and e is an int, such that x = m * 2.**e.
If x is 0, m and e are both 0. Else 0.5 <= abs(m) < 1.0. fsum(...)
fsum(iterable) Return an accurate floating point sum of values in the iterable.
Assumes IEEE-754 floating point arithmetic. gamma(...)
gamma(x) Gamma function at x. gcd(...)
gcd(x, y) -> int
greatest common divisor of x and y hypot(...)
hypot(x, y) Return the Euclidean distance, sqrt(x*x + y*y). isclose(...)
isclose(a, b, *, rel_tol=1e-09, abs_tol=0.0) -> bool Determine whether two floating point numbers are close in value. rel_tol
maximum difference for being considered "close", relative to the
magnitude of the input values
abs_tol
maximum difference for being considered "close", regardless of the
magnitude of the input values Return True if a is close in value to b, and False otherwise. For the values to be considered close, the difference between them
must be smaller than at least one of the tolerances. -inf, inf and NaN behave similarly to the IEEE 754 Standard. That
is, NaN is not close to anything, even itself. inf and -inf are
only close to themselves. isfinite(...)
isfinite(x) -> bool Return True if x is neither an infinity nor a NaN, and False otherwise. isinf(...)
isinf(x) -> bool Return True if x is a positive or negative infinity, and False otherwise. isnan(...)
isnan(x) -> bool Return True if x is a NaN (not a number), and False otherwise. ldexp(...)
ldexp(x, i) Return x * (2**i). lgamma(...)
lgamma(x) Natural logarithm of absolute value of Gamma function at x. log(...)
log(x[, base]) Return the logarithm of x to the given base.
If the base not specified, returns the natural logarithm (base e) of x. log10(...)
log10(x) Return the base 10 logarithm of x. log1p(...)
log1p(x) Return the natural logarithm of 1+x (base e).
The result is computed in a way which is accurate for x near zero. log2(...)
log2(x) Return the base 2 logarithm of x. modf(...)
modf(x) Return the fractional and integer parts of x. Both results carry the sign
of x and are floats. pow(...)
pow(x, y) Return x**y (x to the power of y). radians(...)
radians(x) Convert angle x from degrees to radians. sin(...)
sin(x) Return the sine of x (measured in radians). sinh(...)
sinh(x) Return the hyperbolic sine of x. sqrt(...)
sqrt(x) Return the square root of x. tan(...)
tan(x) Return the tangent of x (measured in radians). tanh(...)
tanh(x) Return the hyperbolic tangent of x. trunc(...)
trunc(x:Real) -> Integral Truncates x to the nearest Integral toward 0. Uses the __trunc__ magic method.
DATA
e = 2.718281828459045
inf = inf
nan = nan
pi = 3.141592653589793
tau = 6.283185307179586
FILE
(built-in)
Python——built-in module Help: math的更多相关文章
- python - ImportError: No module named http.cookies error when installing cherrypy 3.2 - Stack Overflow
python - ImportError: No module named http.cookies error when installing cherrypy 3.2 - Stack Overfl ...
- Python ImportError: No module named 'requests'的解决方法
import requests报错 Python ImportError: No module named 'requests'可能是requests没有安装 安装流程 1.cmd 2.cd D:\p ...
- 关于python中的module
python中的module(模块),关于这个概念以及使用时主要有以下几点需要注意: (1)import xx时,会首先将这个xx module中的代码执行一遍(且仅执行一遍): 例如: (2)模块包 ...
- fatal: [db01]: FAILED! => {"changed": false, "msg": "The PyMySQL (Python 2.7 and Python 3.X) or MySQL-python (Python 2.X) module is required."}
centos7.5 使用ansible中的role安装mariadb创建用户报错 错误: [root@m01 roles]# ansible-playbook site.yml TASK [mysql ...
- Python ImportError: No module named Image
/********************************************************************************* * Python ImportEr ...
- python 3 serial module install
/************************************************************************* * python 3 serial module ...
- 转载:关于 python ImportError: No module named 的问题
关于 python ImportError: No module named 的问题 今天在 centos 下安装 python setup.py install 时报错:ImportError: N ...
- Python报错module 'scipy.misc' has no attribute 'xxx'
Python报错module 'scipy.misc' has no attribute 'imresize' 解决办法: 安装Pillow包,命令如下: pip install Pillow 然后重 ...
- Python- 【python无法更新pip】提示python.exe: No module named pip
用Anaconda安装的python 版本无法更新pip导致不能安装第三方库: 用Anaconda Prompt安装第三方库: python -m pip install --upgrade pip ...
随机推荐
- VS2017内存占用高
我的环境和硬件参数 说明:本篇所提到的方法在我的机器上经过设置是能明显改善卡顿的,但可能你的VS卡顿的原因不一定是本文所提到的,可以通过排除法找到问题所在. 我的环境和硬件参数: vs 2017 pr ...
- mysql8.0.主从复制搭建
搭建主从数据库 一.准备两台以上对的数据库 数据库1(主服务器):192.168.2.2 数据库2(从服务器):192.168.2.4 1.1 配置主服务器 .在 /et ...
- 用css 添加手状样式,鼠标移上去变小手,变小手
用css 添加手状样式,鼠标移上去变小手,变小手 cursor:pointer; 用JS使鼠标变小手onmouseover(鼠标越过的时候) onmouseover="this.style. ...
- Redis和MongoDB的区别(面试受用)
项目中用的是MongoDB,但是为什么用其实当时选型的时候也没有太多考虑,只是认为数据量比较大,所以采用MongoDB. 最近又想起为什么用MongoDB,就查阅一下,汇总汇总: 之前也用过redis ...
- wifi扫描
获取当前位置的wifi,信道,强度,mac #include "ESP8266WiFi.h" IPAddress apIP(192, 168, 4, 1); void setup( ...
- 深蓝词库转换2.4版发布,支持最新的搜狗用户词库备份bin格式
很高兴的告诉大家,感谢GitHub上的h4x3rotab提供python版的搜狗用户词库备份bin格式的解析算法,感谢tmxkn1提供了C#版的实现,深蓝词库转换终于迎来了一个重大更新,能够支持搜狗用 ...
- 使用axios 的post请求下载文件,
axios({ method: 'post', data: param, responseType:'blob', url: _urls + '/Downloaddata' }).then(data= ...
- springboot整合Quartz实现定时任务
1.maven依赖: <!--quartz--> <dependency> <groupId>org.quartz-scheduler</groupId> ...
- ios之库Protobuf的使用
https://blog.csdn.net/dangbai01_/article/details/81099001 (1)Protobuf是什么? Protobuf 即 google protocol ...
- Bayes factor
bayes因子为什么一定要除以先验机会比,如果是想用样本的作用,来判断支持原来的假设θ_0,H_0的力度,直接用后验概率比不就好了吗? 左边等于右边