JSON转CSV — Python

将 JSON 数据转换为 CSV 文件的 python 脚本

此脚本会将您的 JSON 数据转换为 CSV 文件。它将 .json 文件作为输入,并提供 .csv 文件作为输出。

安装

pip install json

进入全屏模式 退出全屏模式

脚本

import json
if __name__ == ' __main__':
    try:
        with open('input.json', 'r') as f:
            data = json.loads(f.read())

output = ','.join([*data[0]])
        for obj in data:
            output += f'\n{obj["Name"]},{obj["age"]},{obj["birthyear"]}'

        with open('output.csv', 'w') as f:
            f.write(output)
    except Exception as ex:
        print(f'Error: {str(ex)}')

进入全屏模式 退出全屏模式

感谢您阅读本教程。以后别忘了拍拍👏,关注我,看更多这样的文章。


Logo

学AI,认准AI Studio!GPU算力,限时免费领,邀请好友解锁更多惊喜福利 >>>

更多推荐