Python中decmial用法
时间: 2024-05-27 09:06:22 浏览: 73
Python decimal模块使用方法详解
在Python中,decimal模块提供了一种精度更高的浮点数运算方式,可用于更加精确的计算。下面是decimal模块的用法示例:
1. 导入模块
```python
import decimal
```
2. 设置精度
```python
decimal.getcontext().prec = 10 # 设置精度为10位
```
3. 创建Decimal对象
```python
a = decimal.Decimal('10.5') # 创建一个Decimal对象
```
4. 进行数学运算
```python
b = decimal.Decimal('2.5')
c = a + b # 加法运算
d = a * b # 乘法运算
```
5. 输出结果
```python
print(c) # 输出结果为13.0
print(d) # 输出结果为26.25
```
阅读全文