Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Write and Read dictionary to a text file

How can I store the key and list as value in text file and read it back.

2 Answers

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

This should get you started.

import json

dic = {'key1': 'value1',
       'key2': 'value2',
       'key3': 'value3',
       'key4': 'value4',
       'key5': 'value5',
       }

with open("datafile.txt", "w") as outfile:
    # convert dict to json format, write to file
    outfile.write(json.dumps(dic))


with open("datafile.txt", "r") as infile:
    # read from file, convert json format to dict
    new_dic = json.loads(infile.read())

print(new_dic)
print(dic == new_dic)

Post back if you need more help! Good luck!!