import
json
json.dumps(datas)
當datas中含有中文等非ascii字符時,可以使用如下參數:
json.dumps(datas,
ensure_ascii=False)
如果想美化輸出格式,可以使用indent參數:
indent=4)