Python json.dumps()为浮点数添加了许多数字

时间:2012-01-14 11:20:36

标签: python

  

可能重复:
  Format floats with standard json module

>>> import json
>>> foo={'bar': 0.2}
>>> json.dumps(foo, indent=4)
'{\n    "bar": 0.20000000000000001\n}'

有没有办法在输出的JSON中使用更少的精度/数字?

0 个答案:

没有答案