Come leggere in un file json python

Esempi di codice

54
0

python legge il file json

import json

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

print(data)
12
0

apri file json python

import json

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

In altre lingue

Questa pagina è in altre lingue

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