PyDev console: starting.
Python 3.10.7 (tags/v3.10.7:6cc6b13, Sep 5 2022, 14:08:36) [MSC v.1933 64 bit (AMD64)] on win32
2-1.1
0.8999999999999999
最后结果为何是"0.8999999999999999"而不是"0.9"
from decimal import Decimal
a = Decimal('2')
b = Decimal('1.1')
print(a-b)