当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python decimal.localcontext用法及代码示例


用法:

decimal.localcontext(ctx=None)

返回一个上下文管理器,它将在进入with-statement 时将活动线程的当前上下文设置为ctx 的副本,并在退出with-statement 时恢复先前的上下文。如果未指定上下文,则使用当前上下文的副本。

例如,以下代码将当前小数精度设置为 42 位,执行计算,然后自动恢复之前的上下文:

from decimal import localcontext

with localcontext() as ctx:
    ctx.prec = 42   # Perform a high precision calculation
    s = calculate_something()
s = +s  # Round the final result back to the default precision

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 decimal.localcontext。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。