python 寫json格式字符串到文件

在項目中須要把json格式的配置字符串寫到文件裏,用json.dumps()json

eg:code

with open(configFile, 'w+') as f:
        f.write(json.dumps(confsDict, indent=2))

參數 indent=2 是爲了保持字符串在文件中的換行和空格,方便人閱讀。圖片

configFile:字符串

文件寫入結果

相關文章
相關標籤/搜索