I have a couple dictionaries that I want to write to their own text files and I want to be able to open them up separately (notepad).
This is the code I have used to save the dictionaries to their respective files.
f = open('example.txt', 'w')
f.write(str(dict))
f.close
Is this the correct way to do so and if so, where do these textfiles get saved to?