“load.json” Réponses codées

Chargez JSON

import json

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

lire le fichier json python

import json

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

flx = json.dumps(data, ensure_ascii=False, indent=4)
print(flx)
JJSSEECC

Charge JSON


import json

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

load.json

{
	"values": [
		"init:load"
	]
}
Ashamed Armadillo

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code