python 字典转json 2018-12-21 本文已影响0人 Chris_Cui # 字典转json def my_json(dict): import json return json.dumps(dict, ensure_ascii=False)