方法:把 decaimal128 数据类型,先转换为 float 类型,再进行数学计算
from bson.decimal128 import Decimal128 def decimal_to_float(num): return float(Decimal128(str(num)).to_decimal())