摘要: Python复杂对象转JSON在Python对于简单的对象转json还是比较简单的,如下: import json d = {'a': 'aaa', 'b': ['b1', 'b2', 'b3'], 'c': 100}json_str = json.dumps(d)print json_str123 阅读全文
posted @ 2019-09-26 11:11 邱明成 阅读(13657) 评论(1) 推荐(1) 编辑