“Objet Python au fichier JSON” Réponses codées

Python Lire le fichier JSON

import json

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

print(data)
MzanziLegend

Objet Python au fichier JSON

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

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

python json vidage dans le fichier

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

Convertir de JSON en 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

Réponses similaires à “Objet Python au fichier JSON”

Questions similaires à “Objet Python au fichier JSON”

Plus de réponses similaires à “Objet Python au fichier JSON” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code