小编典典

Python-没有空格的json

python

我刚刚意识到json.dumps()在JSON对象中添加了空格

例如

{'duration': '02:55', 'name': 'flower', 'chg': 0}

如何删除空格以使JSON更紧凑并保存要通过HTTP发送的字节?

如:

{'duration':'02:55','name':'flower','chg':0}

阅读 210

收藏
2021-01-20

共1个答案

小编典典

json.dumps(separators=(',', ':'))
2021-01-20