Answers for "how can find dict in file in python"

4

python read dictionary from file

import ast

with open("/path/to/file", "r") as data:
    dictionary = ast.literal_eval(data.read())
Posted by: Guest on August-15-2020
0

read dict txt python

>>> d2 = json.load(open("text.txt"))
>>> print d2
{u'two': 2, u'one': 1}
Posted by: Guest on February-04-2021

Code answers related to "how can find dict in file in python"

Python Answers by Framework

Browse Popular Code Answers by Language