“Читать Dict txt python” Ответ

Python Read Dictionary из файла

import ast

with open("/path/to/file", "r") as data:
    dictionary = ast.literal_eval(data.read())
Troubled Teira

Читать Dict txt python

>>> d2 = json.load(open("text.txt"))
>>> print d2
{u'two': 2, u'one': 1}
Cruel Crab

Читать Dict txt python

>>> import json
>>> d = {"one":1, "two":2}
>>> json.dump(d, open("text.txt",'w'))
Cruel Crab

Ответы похожие на “Читать Dict txt python”

Вопросы похожие на “Читать Dict txt python”

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

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