Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Python 教程

Python 主页 Python 简介 Python 入门 Python 语法 Python 注释 Python 变量 Python 数据类型 Python 数字 Python 类型转换 Python 字符串 Python 布尔值 Python 运算符 Python 列表 Python 元组 Python 集合 Python 字典 Python If...Else Python While 循环 Python For 循环 Python 函数 Python Lambda Python 数组 Python 类/对象 Python 继承 Python 迭代器 Python 多态 Python 作用域 Python 模块 Python 日期 Python 数学 Python JSON Python 正则表达式 Python PIP Python Try...Except Python 用户输入 Python 字符串格式化

文件处理

Python 文件处理 Python 读取文件 Python 写入/创建文件 Python 删除文件

Python 模块

NumPy 教程 Pandas 教程 SciPy 教程 Django 教程

Python Matplotlib

Matplotlib 简介 Matplotlib 入门 Matplotlib Pyplot Matplotlib 绘图 Matplotlib 标记 Matplotlib 线 Matplotlib 标签 Matplotlib 网格 Matplotlib 子图 Matplotlib 散点图 Matplotlib 条形图 Matplotlib 直方图 Matplotlib 饼图

机器学习

入门 均值中位数众数 标准差 百分位数 数据分布 正态数据分布 散点图 线性回归 多项式回归 多元回归 缩放 训练/测试 决策树 混淆矩阵 层次聚类 逻辑回归 网格搜索 分类数据 K-均值 Bootstrap Aggregation 交叉验证 AUC - ROC 曲线 K-最近邻

Python MySQL

MySQL 入门 MySQL 创建数据库 MySQL 创建表 MySQL 插入 MySQL 选择 MySQL Where MySQL 排序 MySQL 删除 MySQL 删除表 MySQL 更新 MySQL 限制 MySQL 连接

Python MongoDB

MongoDB 入门 MongoDB 创建数据库 MongoDB 集合 MongoDB 插入 MongoDB 查找 MongoDB 查询 MongoDB 排序 MongoDB 删除 MongoDB 删除集合 MongoDB 更新 MongoDB 限制

Python 参考

Python 概述 Python 内置函数 Python 字符串方法 Python 列表方法 Python 字典方法 Python 元组方法 Python 集合方法 Python 文件方法 Python 关键字 Python 异常 Python 词汇表

模块参考

随机模块 请求模块 统计模块 数学模块 cMath 模块

Python 如何做

删除列表重复项 反转字符串 添加两个数字

Python 示例

Python 示例 Python 编译器 Python 练习 Python 测验 Python 服务器 Python 面试问答 Python 集训营 Python 证书

Python math 模块


Python 数学模块

Python 有一个内置模块,您可以使用它来执行数学任务。

The math 模块有一组方法和常量。


数学方法

方法 描述
math.acos() 返回数字的反余弦
math.acosh() 返回数字的反双曲余弦
math.asin() 返回数字的反正弦
math.asinh() 返回数字的反双曲正弦
math.atan() 返回数字的反正切,以弧度表示
math.atan2() 返回 y/x 的反正切,以弧度表示
math.atanh() 返回一个数字的双曲反正切
math.ceil() 将一个数字向上舍入到最接近的整数
math.comb() 返回从 n 个项目中选择 k 个项目的组合数,不重复且无顺序
math.copysign() 返回一个浮点数,该浮点数的值为第一个参数的值,符号为第二个参数的符号
math.cos() 返回一个数字的余弦
math.cosh() 返回一个数字的双曲余弦
math.degrees() 将一个角度从弧度转换为度
math.dist() 返回两点 (p 和 q) 之间的欧几里德距离,其中 p 和 q 是该点的坐标
math.erf() 返回一个数字的误差函数
math.erfc() 返回一个数字的互补误差函数
math.exp() 返回 E 的 x 次方
math.expm1() 返回 Ex - 1
math.fabs() 返回一个数字的绝对值
math.factorial() 返回一个数字的阶乘
math.floor() 将一个数字向下舍入到最接近的整数
math.fmod() 返回 x/y 的余数
math.frexp() 返回一个指定数字的尾数和指数
math.fsum() 返回任何可迭代对象(元组、数组、列表等)中所有项目的总和
math.gamma() 返回 x 处的伽马函数
math.gcd() 返回两个整数的最大公约数
math.hypot() 返回欧几里德范数
math.isclose() 检查两个值是否彼此接近,或者不接近
math.isfinite() 检查一个数字是否为有限的,或者不为有限的
math.isinf() 检查一个数字是否为无限的,或者不为无限的
math.isnan() 检查一个值是否为 NaN(不是数字),或者不为 NaN
math.isqrt() 将一个平方根数字向下舍入到最接近的整数
math.ldexp() 返回 math.frexp() 的逆,即给定数字 x 和 i 的 x * (2**i)
math.lgamma() 返回 x 的对数伽马值
math.log() 返回一个数字的自然对数,或者以某个底为底的数字的对数
math.log10() 返回 x 的以 10 为底的对数
math.log1p() 返回 1+x 的自然对数
math.log2() 返回 x 的以 2 为底的对数
math.perm() 返回从 n 个项目中选择 k 个项目的排列数,有顺序且不重复
math.pow() 返回 x 的 y 次方
math.prod() 返回可迭代对象中所有元素的乘积
math.radians() 将一个度值转换为弧度
math.remainder() 返回最接近的值,该值可以使分子完全被分母整除
math.sin() 返回一个数字的正弦
math.sinh() 返回一个数字的双曲正弦
math.sqrt() 返回一个数字的平方根
math.tan() 返回一个数字的正切
math.tanh() 返回一个数字的双曲正切
math.trunc() 返回一个数字的截断整数部分

数学常量

常量 描述
math.e 返回欧拉数 (2.7182...)
math.inf 返回一个浮点正无穷大
math.nan 返回一个浮点 NaN(非数字)值
math.pi 返回 PI (3.1415...)
math.tau 返回 tau (6.2831...)

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.