** J'ai senti qu'il y avait une demande pour me dire le minimum. Et bien je le suis **
Première lecture
import json
f = open("./file_name.json", 'r')
#Ici, c'est important! !!
json_data = json.load(f) #Lire au format JSON
Puis exportez
import json
data = {"a":"alpha"}
fw = open('./file_name.json','w')
# json.Écrire dans un fichier avec la fonction de vidage
json.dump(data ,fw,indent=4)
Recommended Posts