Fișier python JSON la dict

Exemple de cod

54
0

python citește fișierul json

import json

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

print(data)
12
0

deschide fișierul JSON python

import json

with open('data.txt') as json_file:
    data = json.load(json_file)
8
0

scrie dict la JSON python

import json
with open('result.json', 'w') as fp:
    json.dump(sample, fp)
7
0

încărcare json din fișierul python 3

import json

with open('file_to_load.json', 'r') as file:
  data = json.load(file)
4
0

salvați un dict la JSON python

import json

with open('data.json', 'w') as fp:
    json.dump(data, fp)
2
0

fișier json la dict python

import json

with open("data.json", "r") as json_file:
    my_dict = json.load(json_file)

În alte limbi

Această pagină este în alte limbi

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................