字典(JSON)數據寫入文件並換行,Python
import json
if __name__ == '__main__':
dict_data = {"one": 1, "two": 2, "three": 3}
file = open('data.txt', 'a+') #可讀可寫,每次追加到文件後面。不是覆蓋。
json.dump(obj=dict_data, fp=file)
file.write('\n')
json.dump(obj=dict_data, fp=file)
file.close()
打開data.txt文件可以看到:
{"one": 1, "two": 2, "three": 3}
{"one": 1, "two": 2, "three": 3}