gpt4 book ai didi

python - 为什么 Python json 模块将字典键中的 float 表示为字符串?

转载 作者:行者123 更新时间:2023-12-01 22:44:16 25 4
gpt4 key购买 nike

请看下面的代码:

>>> import json
>>> m = {}
>>> m[0.0] = 1.0
>>> json.dumps(m)
'{"0.0": 1.0}'

在 JSON 的值中,我们有 1.0。但是在 key 中我们有“0.0”(一个 Json 字符串)。

这种对 float 的模糊处理只会花费我一些调试时间。有谁知道为什么 python 的 json 模块会这样做?

最佳答案

因为 JSON 键必须是字符串。参见 the RFC .

关于python - 为什么 Python json 模块将字典键中的 float 表示为字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5526995/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com