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. android 6.0 Intent 安装apk闪退

    需求描述: 利用android系统自带的DownloadManager下载apk文件,并且打开安装界面. 问题描述: 关于DownloadManager的使用网上有很多例子,在此不啰嗦.下载完成之后在 ...

  2. 微信连wifi认证

    官网 https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1444894086 https://blog.csdn.net/u0116 ...

  3. Spire.XLS,生成Excel文件、加载Excel文件

    一.组件介绍 Spire.XLS是E-iceblue开发的一套基于企业级的专业Office文档处理的组件之一,全称Spire.Office for .NET.旗下有Spire.Doc,Spire XL ...

  4. ABP之N层架构

    介绍 应用程序代码库的分层是一种广泛接受的技术,有助于降低复杂性并提高代码的可重用性. 为了实现分层体系结构,ASP.NET Boilerplate遵循领域驱动设计(DDD)的原则. 领域驱动设计(D ...

  5. windows安全更新程序(KB4093112) 安装失败 错误0x80070011

    解决办法:win + R → 输入regedi 将默认安装路径改回C盘的program files

  6. 以API方式调用C# dll,使用OneNote2013 sp1实现OCR识别本地图片

    http://www.cnblogs.com/Charltsing/p/OneNoteOCRAPI.html OneNote2013 OCR API调用使用说明2019.4.17 使用说明:1.安装干 ...

  7. Python----逻辑回归

    逻辑回归 1.逻辑函数 sigmoid函数就出现了.这个函数的定义如下: sigmoid函数具有我们需要的一切优美特性,其定义域在全体实数,值域在[0, 1]之间,并且在0点值为0.5. 那么,如何将 ...

  8. C#需要在项目程序生成前后执行相关的事件

    分享4: 需求:需要在项目程序生成前后执行相关的事件,比如:需要将某个文件拷贝到bin\Debug中,或者创建某文件夹等. 分析:我们可利用项目属性(选择项目右键,选择属性)中的“生成事件”预定义相关 ...

  9. [wiki] Unix like

    1. Unix的发展历史 2. 纵向的图 3. 来源: https://zh.wikipedia.org/wiki/类Unix系统 4. 中文版   数种“类UNIX操作系统”的相互关系图 类Unix ...

  10. Kafka学习笔记-如何保证高可用

    一.术语 1.1 Broker Kafka 集群包含一个或多个服务器,服务器节点称为broker. broker存储topic的数据. 如果某topic有N个partition,集群有N个broker ...