在Python中,可以使用json
模塊將JSON數據保存到文件中。具體步驟如下:
json
模塊。import json
data = {'name': 'John', 'age': 30, 'city': 'New York'}
json.dump()
函數將JSON數據保存到文件中。該函數接受兩個參數:JSON數據和文件對象。可以使用open()
函數創建一個文件對象。with open('data.json', 'w') as file:
json.dump(data, file)
在上述代碼中,'data.json'
是要保存JSON數據的文件名,'w'
表示以寫入模式打開文件。
完整示例代碼如下:
import json
data = {'name': 'John', 'age': 30, 'city': 'New York'}
with open('data.json', 'w') as file:
json.dump(data, file)
運行上述代碼后,會在當前目錄下創建一個名為data.json
的文件,并將JSON數據保存到該文件中。