Answers for "python read text and make 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
2

make dictionary from text file python

d = {}
with open("file.txt") as f:
    for line in f:
       (key, val) = line.split()
       d[int(key)] = val
Posted by: Guest on April-16-2020

Code answers related to "python read text and make dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language