在Python中使用`decimal`模块可以精确地进行十进制运算,避免浮点数精度问题。以下是一些基本用法和高级技巧:
基本用法
导入模块
```python
from decimal import Decimal, getcontext
```
创建Decimal对象
```python
price1 = Decimal('10.25')
price2 = Decimal('5.75')
```
基本运算
```python
total = price1 + price2 16.00
discount = price1 * Decimal('0.9') 9.225
```
比较运算
```python
is_greater = price1 > price2 True
is_equal = price1 == Decimal('10.25') True
```
高级用法
设置全局精度
```python
getcontext().prec = 4 设置精度为4位
```
四舍五入
```python
price = Decimal('10.2345')
rounded_price = round(price, 2) 10.23
```
量化(设置小数位数)
```python
amount = Decimal('123.456')
rounded_amount = amount.quantize(Decimal('0.01')) 123.46
```
注意事项
创建`Decimal`对象时,建议使用字符串形式的数字,这样可以避免浮点数精度问题。
使用`getcontext()`函数可以获取和设置当前的精度和舍入方式。
示例代码
```python
from decimal import Decimal, getcontext
设置全局精度为4位
getcontext().prec = 4
创建Decimal对象
price1 = Decimal('10.25')
price2 = Decimal('5.75')
基本运算
total = price1 + price2
discount = price1 * Decimal('0.9')
比较运算
is_greater = price1 > price2
is_equal = price1 == Decimal('10.25')
四舍五入
rounded_price = round(price1, 2)
输出结果
print(f"Total: {total}")
print(f"Discount: {discount}")
print(f"Is greater: {is_greater}")
print(f"Is equal: {is_equal}")
print(f"Rounded price: {rounded_price}")
```
通过这些方法,你可以利用`decimal`模块进行高精度和高可靠性的十进制运算。