脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|shell|

服务器之家 - 脚本之家 - Python - python中decimal用法详解

python中decimal用法详解

2023-10-20 13:31IT之一小佬 Python

decimal是python内置库。decimal模块支持快速正确四舍五入的十进制浮点运算。

decimal是python内置库。

decimal模块支持快速正确四舍五入的十进制浮点运算。

示例代码:

import decimal

a = decimal.Decimal(123)
print(a)

b = decimal.Decimal(123456.123)
print(b)
print(a + b)

c = decimal.Decimal('123456.123')
print(a + c)

aa = 123
bb = 123456.123
print(aa + bb)

运行结果:

python中decimal用法详解

        与基于硬件的二进制浮点数不同,decimal 模块具有用户可更改的精度(默认为 28 位),对于给定问题,它可以根据需要设置为最大:

from decimal import getcontext, Decimal

getcontext().prec = 6
a = Decimal(1)
b = Decimal(7)
print(a)
print(b)
print(a / b)

getcontext().prec = 28
c = Decimal(1)
d = Decimal(7)
print(c)
print(d)
print(c / d)

运行结果:

python中decimal用法详解

        使用小数的通常开始是导入模块,查看当前上下文getcontext(),并在必要时为精度、舍入或启用的陷阱设置新值:

from decimal import getcontext

print(getcontext())
getcontext().prec = 6
print(getcontext())

运行结果:

python中decimal用法详解

        Decimal 实例可以从整数、字符串、浮点数或元组构造。从整数或浮点数构造执行该整数或浮点数的值的精确转换。十进制数包括特殊值,例如 NaN代表“不是数字”、正数和负数 Infinity,以及-0:

from decimal import getcontext, Decimal

getcontext().prec = 6
print(getcontext())
a = Decimal(10)
print(a, type(a))

b = Decimal(3.14)
print(b)

c = Decimal('3.14')
print(c)

d, e, f, g = Decimal((0, (3, 1, 4), -2)), Decimal((0, (3, 1, 4), -5)), Decimal((1, (3, 1, 4), -5)), Decimal((0, (3, 1, 4), 5))
print(d, e, f, g)

h = Decimal('NaN')
print(h, type(h))

i = Decimal('-Infinity')
print(i, type(i))

运行结果:

python中decimal用法详解

官方文档:decimal — Decimal fixed point and floating point arithmetic — Python 3.11.2 documentation

到此这篇关于python中decimal用法详解的文章就介绍到这了,更多相关内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文地址:https://blog.csdn.net/weixin_44799217/article/details/129481997

延伸 · 阅读

精彩推荐