使用 Python 将excel 生成json

编写 Python 脚本
创建一个 Python 脚本,例如 excel_to_json.py,内容如下:

import pandas as pd

def excel_to_json(excel_file, sheet_name, json_file):
    # 读取 Excel 文件
    df = pd.read_excel(excel_file, sheet_name=sheet_name)
    
    # 将 DataFrame 转换为 JSON
    df.to_json(json_file, orient='records', force_ascii=False)

# 示例用法
excel_to_json('input.xlsx', 'Sheet1', 'output.json')
上一篇:Facebook 人工智能:社交领域的智慧之光


下一篇:星海智算:skl-videolingo-2.0(AI视频翻译)使用教程