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的更多相关文章

  1. 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 ...

  2. Python ImportError: No module named 'requests'的解决方法

    import requests报错 Python ImportError: No module named 'requests'可能是requests没有安装 安装流程 1.cmd 2.cd D:\p ...

  3. 关于python中的module

    python中的module(模块),关于这个概念以及使用时主要有以下几点需要注意: (1)import xx时,会首先将这个xx module中的代码执行一遍(且仅执行一遍): 例如: (2)模块包 ...

  4. 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 ...

  5. Python ImportError: No module named Image

    /********************************************************************************* * Python ImportEr ...

  6. python 3 serial module install

    /************************************************************************* * python 3 serial module ...

  7. 转载:关于 python ImportError: No module named 的问题

    关于 python ImportError: No module named 的问题 今天在 centos 下安装 python setup.py install 时报错:ImportError: N ...

  8. Python报错module 'scipy.misc' has no attribute 'xxx'

    Python报错module 'scipy.misc' has no attribute 'imresize' 解决办法: 安装Pillow包,命令如下: pip install Pillow 然后重 ...

  9. Python- 【python无法更新pip】提示python.exe: No module named pip

    用Anaconda安装的python 版本无法更新pip导致不能安装第三方库: 用Anaconda Prompt安装第三方库: python -m pip install --upgrade pip ...

随机推荐

  1. Redis笔记-集群搭建

    Redis单机版搭建上一篇已经基本介绍了,下面讨论Redis集群搭建方案和示例. 1.关于Redis常用的集群方案(三种): a.一主多从,如一个Master.两个Slave b.薪火相传,即集群中的 ...

  2. iBatis第一章:基础知识概述 & MVC思想

    一.java是一门十分受开发人员欢迎的语言,在开发语言排行榜中名列前茅,人们对其看法不尽相同,就我自身感受而言,我觉得java语言的主要优势体现在如下几方面:1.java属于开源语言,开发人员可以找到 ...

  3. Django-2- 模板路径查找,模板变量,模板过滤器,静态文件引用

    模板路径查找 路径配置 2. templates模板查找有两种方式 2.1 - 在APP目录下创建templates文件夹,在文件夹下创建模板 2.2 - 在项目根目录下创建templates文件夹, ...

  4. kvm热添加和热迁移

    a.热添加磁盘 1.创建磁盘 qemu-img create -f qcow2 web01-add01.qcow2 5G 2.附加磁盘设备 virsh attach-disk web01 /opt/w ...

  5. 金蝶K3外购入库单单价取数规则调整

    涉及界面: 问题:财务抱怨外购入库单价格取错,单价多除了一次税率 例如,采购单里面注明了价格是不含税15.3256 结果在外购入库单里面,又自做主张除以税率17%,把采购成本搞成了13.0988, 咨 ...

  6. react-router(v4)

    概要 开发单页应用, 首先绕不开的内容就是路由, react router v4 版本是最新的版本. 和之前的版本相比, 成熟了很多, 也简单了很多, 使用起来更加方便. 核心 component r ...

  7. 【导航】FPGA相关

    [博客索引] FPGA相关 数字电路实现上,较多的经验是基于Xilinx/Altera的FPGA,使用Verilog语言,实现光传输SDH.OTN通信协议,DDR3控制器应用,以及视频分割.合并.sc ...

  8. 前端之DOM

    老师的博客:https://www.cnblogs.com/liwenzhou/p/8011504.html DOM(Document Object Model)是一套对文档的内容进行抽象和概念化的方 ...

  9. Storm入门(四)WordCount示例

    一.关联代码 使用maven,代码如下. pom.xml  和Storm入门(三)HelloWorld示例相同 RandomSentenceSpout.java /** * Licensed to t ...

  10. Python支付宝在线支付API

    一.蚂蚁金服开发平台申请测试账号 a. 登陆蚂蚁金服开放平台https://open.alipay.com/platform/manageHome.htm,在“开发中心”—“研发服务”下拉处选择沙箱作 ...