“файл json для Dict Python” Ответ

Python читать файл json

import json

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

print(data)
MzanziLegend

файл json для Dict Python

import json

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

Откройте файл json python

import json

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

Напишите 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

Ответы похожие на “файл json для Dict Python”

Вопросы похожие на “файл json для Dict Python”

Смотреть популярные ответы по языку

Смотреть другие языки программирования