最佳答案
如何将存储在字典data
中的JSON数据写入文件?
f = open('data.json', 'wb')f.write(data)
这给出了错误:
TypeError:必须是字符串或缓冲区,而不是字典