將Python中的字典寫入json文件

字典內容寫入json時,需要用json.dumps將字典轉換爲字符串,然後再寫入。 json也支持格式,通過參數indent可以設置縮進,如果不設置的話,則保存下來會是一行   無縮進: import json path = "F:\\wind data\\11.json" with open(path, 'r') as f_five: json_data = json.load(f_
相關文章
相關標籤/搜索