“Python JSON speichern in der Datei” Code-Antworten

Python JSON speichern in der Datei

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

JSON -Dump zur Einreichung

import json

data = {"key": "value"}

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

Speichern Sie JSON, um zu filmen

import json

data = {}

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

Speichern Sie die JSON -Datei Python

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

Speichern Sie JSON -Dump, um Python einzureichen

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

Schreiben Sie JSON, um Python einzulegen

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

Ähnliche Antworten wie “Python JSON speichern in der Datei”

Fragen ähnlich wie “Python JSON speichern in der Datei”

Weitere verwandte Antworten zu “Python JSON speichern in der Datei” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen