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)
You can do as follow :
import json exDict = {1:1, 2:2, 3:3} file.write(json.dumps(exDict))
https://developer.rhino3d.com/guides/rhinopython/python-xml-json/