“Python Object to JSON File” Código de respuesta

Python Leer el archivo JSON

import json

with open('path_to_file/person.json') as f:
  data = json.load(f)

print(data)
MzanziLegend

Python Object to JSON File

data = {
  "your json": "has data!"
}

with open('data.txt', 'w') as outfile:
    json.dump(data, outfile)
TheUnknown

Python JSON Dump para archivar

import json
with open('data.json', 'w') as f:
    json.dump(data, f)
Odd Ocelot

Convertir de JSON a Python

import json

# some JSON:
x =  '{ "name":"John", "age":30, "city":"New York"}'

# parse x:
y = json.loads(x)

# the result is a Python dictionary:
print(y["age"])
SAMER SAEID

Respuestas similares a “Python Object to JSON File”

Preguntas similares a “Python Object to JSON File”

Más respuestas relacionadas con “Python Object to JSON File” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código