Answers for "File text into Python Dictionary"

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

Code answers related to "File text into Python Dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language