“JSON -Datei, um Python zu dikten” Code-Antworten

Python Read JSON -Datei

import json

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

print(data)
MzanziLegend

JSON -Datei, um Python zu dikten

import json

with open("data.json", "r") as json_file:
    my_dict = json.load(json_file)
Puzzled Penguin

Öffnen Sie die JSON -Datei Python

import json

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

Schreiben Sie JSON Pythonb

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 “JSON -Datei, um Python zu dikten”

Fragen ähnlich wie “JSON -Datei, um Python zu dikten”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen