“Напишите JSON для подачи Python” Ответ

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

import json

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

print(data)
MzanziLegend

Python json сохранить в файл

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

JSON DUMP в файл

import json

data = {"key": "value"}

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

Python JSON DUSMPLE TO FILE

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

Напишите JSON для подачи Python

# 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

Напишите JSON для подачи 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

Ответы похожие на “Напишите JSON для подачи Python”

Вопросы похожие на “Напишите JSON для подачи Python”

Больше похожих ответов на “Напишите JSON для подачи Python” по Python

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

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