当前位置:编程学习 > python >>

介绍 python 浮点计算方法

round返回一个浮点数,可以在第二个参数控制精度
>>> round(0.254343434,2)
0.25
>>> round(0.254343434,3)
0.254


python中的浮点计算可以用decimal模块

>>>from decimal import *
>>>print Decimal(1) / Decimal(3)
0.3333333333333333333333333333
>>>getcontext().prec = 5     #调整精度
>>>print Decimal(1) / Decimal(3)
0.33333
补充:Web开发 , Python ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,