Answers for "how to save dictionaries python to text files"

1

how to create text file with python and store a dictionary

import json

Dict = {'Dict': Dict}

with open('file.txt', 'w') as file:
     file.write(json.dumps(Dict))
Posted by: Guest on March-05-2021

Code answers related to "how to save dictionaries python to text files"

Python Answers by Framework

Browse Popular Code Answers by Language