# Python 数学函数
> 原文: [https://thepythonguru.com/python-mathematical-function/](https://thepythonguru.com/python-mathematical-function/)
* * *
于 2020 年 1 月 7 日更新
* * *
Python 具有许多内置函数。
| 方法 | 描述 |
| --- | --- |
| `round(number[, ndigits])` | 四舍五入数字,也可以在第二个参数中指定精度 |
| `pow(a, b)` | 将`a`提升到`b`的幂 |
| `abs(x)` | 返回`x`的绝对值 |
| `max(x1, x2, ..., xn)` | 返回提供的参数中的最大值 |
| `min(x1, x2, ..., xn)` | 返回提供的参数中的最小值 |
下面提到的函数位于`math`模块中,因此您需要使用以下行首先导入`math`模块。
```py
import math
```
| 方法 | 描述 |
| --- | --- |
| `ceil(x)` | 此函数将数字四舍五入并返回其最接近的整数 |
| `floor(x)` | 此函数将向下取整并返回其最接近的整数 |
| `sqrt(x)` | 返回数字的平方根 |
| `sin(x)` | 返回`x`的正弦,其中`x`以弧度表示 |
| `cos(x)` | 返回`x`的余弦值,其中`x`为弧度 |
| `tan(x)` | 返回`x`的切线,其中`x`为弧度 |
让我们举一些例子来更好地理解
```py
>>> abs(-22) # Returns the absolute value
22
>>>
>>> max(9, 3, 12, 81) # Returns the maximum number
81
>>>
>>> min(78, 99, 12, 32) # Returns the minimum number
12
>>>
>>> pow(8, 2) # can also be written as 8 ** 2
64
>>>
>>> pow(4.1, 3.2) # can also be written as 4.1 ** 3.2
91.39203368671122
>>>
>>> round(5.32) # Rounds to its nearest integer
5
>>>
>>> round(3.1456875712, 3) # Return number with 3 digits after decimal point
3.146
```
```py
>>> import math
>>> math.ceil(3.4123)
4
>>> math.floor(24.99231)
24
```
在下一篇文章中,我们将学习[如何在 python](/python-generating-random-numbers/) 中生成随机数。
* * *
* * *
- 初级 Python
- python 入门
- 安装 Python3
- 运行 python 程序
- 数据类型和变量
- Python 数字
- Python 字符串
- Python 列表
- Python 字典
- Python 元组
- 数据类型转换
- Python 控制语句
- Python 函数
- Python 循环
- Python 数学函数
- Python 生成随机数
- Python 文件处理
- Python 对象和类
- Python 运算符重载
- Python 继承与多态
- Python 异常处理
- Python 模块
- 高级 Python
- Python *args和**kwargs
- Python 生成器
- Python 正则表达式
- 使用 PIP 在 python 中安装包
- Python virtualenv指南
- Python 递归函数
- __name__ == "__main__"是什么?
- Python Lambda 函数
- Python 字符串格式化
- Python 内置函数和方法
- Python abs()函数
- Python bin()函数
- Python id()函数
- Python map()函数
- Python zip()函数
- Python filter()函数
- Python reduce()函数
- Python sorted()函数
- Python enumerate()函数
- Python reversed()函数
- Python range()函数
- Python sum()函数
- Python max()函数
- Python min()函数
- Python eval()函数
- Python len()函数
- Python ord()函数
- Python chr()函数
- Python any()函数
- Python all()函数
- Python globals()函数
- Python locals()函数
- 数据库访问
- 安装 Python MySQLdb
- 连接到数据库
- MySQLdb 获取结果
- 插入行
- 处理错误
- 使用fetchone()和fetchmany()获取记录
- 常见做法
- Python:如何读取和写入文件
- Python:如何读取和写入 CSV 文件
- 用 Python 读写 JSON
- 用 Python 转储对象