现象或者问题 (json.dumps(dict)的结果,分割符号逗号、分号后面有空格字符) 原理 python的json库dumps函数默认分隔符后面都有一个空格 解决方法 json.dumps(dict,separators=(':',',')) 相关文章: