“Schreiben Sie JSON, um Python einzulegen” Code-Antworten

Python Read JSON -Datei

import json

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

print(data)
MzanziLegend

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

Python Json -Dump zum Einreichen

import json
with open('data.json', 'w') as f:
    json.dump(data, f)
Odd Ocelot

Schreiben Sie JSON, um Python einzulegen

# to write on file
# data_dict is a dictionary

import json
        
with open('data.json', 'w') as f:
	json.dump(data_dict, f)
Clear Cowfish

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 “Schreiben Sie JSON, um Python einzulegen”

Fragen ähnlich wie “Schreiben Sie JSON, um Python einzulegen”

Weitere verwandte Antworten zu “Schreiben Sie JSON, um Python einzulegen” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen