informatica:programacion:python:json
¡Esta es una revisión vieja del documento!
Python: JSON
Lectura de datos JSON
import json
Crear JSON
import json json.dump({"nombre": "Pepito", "apellido": "Grillo"}, open("fichero.json", "w")
Creará un fichero fichero.json con el contenido:
{"nombre": "Pepito", "apellido": "Grillo"}
informatica/programacion/python/json.1604848781.txt.gz · Última modificación: por tempwin
