python math
时间: 2023-10-13 18:29:19 浏览: 67
python_math
Python内置的math模块提供了许多数学函数和常数。下面是一些常用的函数:
1. abs(x):返回x的绝对值。
2. pow(x, y):返回x的y次方。
3. sqrt(x):返回x的平方根。
4. exp(x):返回e的x次方。
5. log(x[, base]):返回x的自然对数,如果指定了base,则返回x的以base为底的对数。
6. sin(x):返回x的正弦值。
7. cos(x):返回x的余弦值。
8. tan(x):返回x的正切值。
9. degrees(x):将弧度转换为角度。
10. radians(x):将角度转换为弧度。
除了这些函数外,math模块还提供了常数,如π和自然常数e。
示例代码:
```python
import math
x = 4
y = 2
print("abs(-3) =", abs(-3))
print("pow(2, 3) =", pow(2, 3))
print("sqrt(16) =", math.sqrt(16))
print("exp(2) =", math.exp(2))
print("log(10) =", math.log(10))
print("sin(0) =", math.sin(0))
print("cos(0) =", math.cos(0))
print("tan(0) =", math.tan(0))
print("degrees(1.57) =", math.degrees(1.57))
print("radians(90) =", math.radians(90))
print("π =", math.pi)
print("e =", math.e)
```
输出结果:
```
abs(-3) = 3
pow(2, 3) = 8
sqrt(16) = 4.0
exp(2) = 7.3890560989306495
log(10) = 2.302585092994046
sin(0) = 0.0
cos(0) = 1.0
tan(0) = 0.0
degrees(1.57) = 90.0
radians(90) = 1.5707963267948966
π = 3.141592653589793
e = 2.718281828459045
```
阅读全文