I have a dictionary and am trying to write it to a file.
exDict = {1:1, 2:2, 3:3}
with open('file.txt', 'r') as file:
file.write(exDict)
I then have the error
file.write(exDict)
TypeError: must be str, not dict
So I fixed that error but another error came
exDict = {111:111, 222:222}
with open('file.txt', 'r') as file:
file.write(str(exDict))
The error:
file.write(str(exDict))
io.UnsupportedOperation: not writable
How do I resolve this issue?