gpt4 book ai didi

python - 如何在Python请求中以null作为值发布JSON数据

转载 作者:行者123 更新时间:2023-11-30 22:04:38 24 4
gpt4 key购买 nike

我有 JSON 数据,需要对其进行格式化并发送到服务器,并将 null 值设置为 null。Python 中的字典不能将 null 作为值,但可以将“null”作为值。如何将上面的内容转换为Python可以识别的字典?

a = {"name":"p_retailprice","type":"DOUBLE","comment":"","precision":null,"scale":null}
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'null' is not defined

最佳答案

Python 中 null 关键字的等价物是 None。

尝试

a = {"name":"p_retailprice","type":"DOUBLE","comment":"","precision":None,"scale":None}

关于python - 如何在Python请求中以null作为值发布JSON数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53238599/

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