JSON
Чтение
import json
with open('file.json',encoding='utf-8') as f:
templates = json.load(f)
json.loads()import json
with open('file.json') as f:
file_content = f.read()
templates = json.loads(file_content)Запись
Last updated