Answers for "python text file to new 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
3

python write a dictionary to file

dictionary = {'someKey' : 'someValue'}
file_path = 'somePathToFile/someFileName.py'
with open(file_path, 'w') as output_file:
    print(dictionary, file=output_file)
Posted by: Guest on December-30-2020

Code answers related to "python text file to new dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language