Answers for "how to get dictionary from python files"

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 "how to get dictionary from python files"

Python Answers by Framework

Browse Popular Code Answers by Language