“Python JSON Enregistrer dans le fichier” Réponses codées

Python JSON Enregistrer dans le fichier

with open('output.json', 'w') as outfile:
    json.dump(data, outfile)
Anxious Axolotl

JSON Dump dans le fichier

import json

data = {"key": "value"}

with open('data.json', 'w') as jsonfile:
    json.dump(data, jsonfile)
Attractive Ape

Enregistrer JSON dans le fichier

import json

data = {}

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

Enregistrer le fichier JSON Python

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

Enregistrer JSON Dump pour fichier python

On a modern system (i.e. Python 3 and UTF-8 support), you can write a nice file with:

import json
with open('data.json', 'w', encoding='utf-8') as f:
    json.dump(data, f, ensure_ascii=False, indent=4)

badman

Écrire JSON pour fichier python

import json

with open('data.txt') as json_file:
    data = json.load(json_file)
    for p in data['people']:
        print('Name: ' + p['name'])
        print('Website: ' + p['website'])
        print('From: ' + p['from'])
        print('')
Nyn

Réponses similaires à “Python JSON Enregistrer dans le fichier”

Questions similaires à “Python JSON Enregistrer dans le fichier”

Plus de réponses similaires à “Python JSON Enregistrer dans le fichier” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code