Answers for "how to read text files in dictionary 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

>>> import json
>>> d = {"one":1, "two":2}
>>> json.dump(d, open("text.txt",'w'))
Posted by: Guest on February-04-2021

Code answers related to "how to read text files in dictionary python"

Python Answers by Framework

Browse Popular Code Answers by Language