“objek python ke file json” Kode Jawaban

Python membaca file json

import json

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

print(data)
MzanziLegend

objek python ke file json

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

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

Python Json Dump untuk mengajukan

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

Konversi dari JSON ke 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

Jawaban yang mirip dengan “objek python ke file json”

Pertanyaan yang mirip dengan “objek python ke file json”

Lebih banyak jawaban terkait untuk “objek python ke file json” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya