Answers for "dict file 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

how to write and read dictionary to a file in python

# Reading dictionary from a json file
json.load(open('1.json', 'r'))
Posted by: Guest on April-07-2021

Python Answers by Framework

Browse Popular Code Answers by Language