python内置数学函数
时间: 2023-12-20 10:32:40 浏览: 111
Python内置函数
5星 · 资源好评率100%
以下是几个Python内置的数学函数的介绍和演示:
1. `abs()`函数:返回一个数的绝对值。
```python
num = -5
print(abs(num)) # 输出:5
```
2. `round()`函数:对一个数进行四舍五入。
```python
num = 3.7
print(round(num)) # 输出:4
```
3. `max()`函数:返回一组数中的最大值。
```python
nums = [1, 5, 3, 9, 2]
print(max(nums)) # 输出:9
```
4. `min()`函数:返回一组数中的最小值。
```python
nums = [1, 5, 3, 9, 2]
print(min(nums)) # 输出:1
```
5. `pow()`函数:返回一个数的指定次幂。
```python
num = 2
power = 3
print(pow(num, power)) # 输出:8
```
6. `sqrt()`函数:返回一个数的平方根。
```python
import math
num = 16
print(math.sqrt(num)) # 输出:4.0
```
7. `ceil()`函数:向上取整。
```python
import math
num = 3.1
print(math.ceil(num)) # 输出:4
```
8. `floor()`函数:向下取整。
```python
import math
num = 3.9
print(math.floor(num)) # 输出:3
```
阅读全文