Python中math中数学函数应用
时间: 2024-04-27 17:06:10 浏览: 109
Python中的math模块提供了各种常用的数学函数。以下是一些常见的数学函数及其用法:
1. math.ceil(x):返回大于或等于x的最小整数。
```python
import math
x = 3.4
print(math.ceil(x)) # 输出 4
```
2. math.floor(x):返回小于或等于x的最大整数。
```python
import math
x = 3.4
print(math.floor(x)) # 输出 3
```
3. math.sqrt(x):返回x的平方根。
```python
import math
x = 4
print(math.sqrt(x)) # 输出 2.0
```
4. math.pow(x, y):返回x的y次方。
```python
import math
x = 2
y = 3
print(math.pow(x, y)) # 输出 8.0
```
5. math.exp(x):返回e的x次方。
```python
import math
x = 2
print(math.exp(x)) # 输出 7.38905609893065
```
6. math.log(x):返回x的自然对数。
```python
import math
x = 2
print(math.log(x)) # 输出 0.6931471805599453
```
7. math.sin(x)、math.cos(x)、math.tan(x):返回x的正弦、余弦、正切值。
```python
import math
x = math.pi/4
print(math.sin(x)) # 输出 0.7071067811865476
print(math.cos(x)) # 输出 0.7071067811865476
print(math.tan(x)) # 输出 0.9999999999999999
```
8. math.radians(x):将角度x转换为弧度。
```python
import math
x = 45
x_in_radians = math.radians(x)
print(x_in_radians) # 输出 0.7853981633974483
```
9. math.degrees(x):将弧度x转换为角度。
```python
import math
x = math.pi/4
x_in_degrees = math.degrees(x)
print(x_in_degrees) # 输出 45.0
```
阅读全文