Answers for "python read file to dict"

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

Python Answers by Framework

Browse Popular Code Answers by Language