“Python -Objekt gegen die JSON -Datei” Code-Antworten

Python Read JSON -Datei

import json

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

print(data)
MzanziLegend

Python -Objekt gegen die JSON -Datei

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

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

Python Json -Dump zum Einreichen

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

Von JSON nach Python konvertieren

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

Ähnliche Antworten wie “Python -Objekt gegen die JSON -Datei”

Fragen ähnlich wie “Python -Objekt gegen die JSON -Datei”

Weitere verwandte Antworten zu “Python -Objekt gegen die JSON -Datei” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen