Python:IOError:[Errno 0]读取JSON时出错

时间:2017-12-16 17:59:12

标签: python json ioerror

我有以下代码,它接受一些JSON数据,将其读入字典,进行一些操作,然后将其写回。

import json
file = open('data.json', 'r+')
data = json.loads(file.read())
#Do something with our data
data = json.dumps(data)
file.write(data)
file.close()

当我运行所述代码时,我得到以下内容:

  

IOError:[Errno 0]

导致此错误的原因是什么,我该如何解决?

0 个答案:

没有答案