📜  将字典列表保存到 json python - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:33.354000             🧑  作者: Mango

代码示例1
import json
with open('outputfile', 'w') as fout:
    json.dump(your_list_of_dict, fout)