“Как добавить данные в файл json в Python” Ответ

Вставьте файл json в Python

a_dictionary = {"d": 4}

with open("sample_file.json", "r+") as file:
    data = json.load(file)	# get data from file
    update(a_dictionary)
    seek(0)
    json.dump(data, file)	# insert data in file
Nickton

Как добавить данные в файл json в Python

import json

path="......"

with open(path) as f:
   obj = json.load(f) 

obj["data"].append({"name":"hayder zaeim"})

with open(path,"w+") as of:
   json.dump(obj,of)
Arrogant Ant

Ответы похожие на “Как добавить данные в файл json в Python”

Вопросы похожие на “Как добавить данные в файл json в Python”

Больше похожих ответов на “Как добавить данные в файл json в Python” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования