当前位置: 代码迷 >> python >> Json文件到Python中的csv
  详细解决方案

Json文件到Python中的csv

热度:98   发布时间:2023-06-13 20:19:31.0

如果我使用此脚本在Python中将Json转换为Csv:

import json

import csv

with open("data.json") as file:
    data = json.loads(file)

with open("data.csv", "w") as file:
    csv_file = csv.writer(file)
    for item in data:
        csv_file.writerow([item['studio'], item['title']] +    item['release_dates'].values())

它将引发错误消息:

Traceback (most recent call last):

File "<stdin>", line 2, in <module>

File "C:\Python27\lib\json\__init__.py", line 338, in loads
    return _default_decoder.decode(s)

File "C:\Python27\lib\json\decoder.py", line 365, in decode
    obj, end = self.raw_decode(s, idx=_w(s, 0).end())
TypeError: expected string or buffer

当您应该使用json.loads()时,您正在使用json.load()

json.loads用于读取字符串,而json.load用于读取文件。

请访问此处以获取更多信息: : 。

另外,它们不相关,但是可以with语句链接。

with open("data.json") as json_file, open("data.csv", "w") as csv_file:
    csv_file = csv.writer(csv_file)
    for item in json.load(json_file):
        csv_file.writerow(...)
  相关解决方案