标签: python
可能重复: Format floats with standard json module
>>> import json >>> foo={'bar': 0.2} >>> json.dumps(foo, indent=4) '{\n "bar": 0.20000000000000001\n}'
有没有办法在输出的JSON中使用更少的精度/数字?