“Python agregar al archivo JSON” Código de respuesta

Inserte el archivo JSON en 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

Python agregar al archivo JSON

import json
with open(path) as f
	data = json.load(f)
	data["new"] = "penguin"
	json.dump(data,f)
Thankful Toucan

Respuestas similares a “Python agregar al archivo JSON”

Preguntas similares a “Python agregar al archivo JSON”

Más respuestas relacionadas con “Python agregar al archivo JSON” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código