how to save dictionary output in text file code example
Example 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))
Example 2: python save dictionary as text
with open('myfile.txt', 'w') as f:
print(mydictionary, file=f)