摘要: import csv import json # 常规csv表格转换为json文件,表头作为字典key字段。 def convert_csv_to_json(csv_file_path, json_file_path): data = [] with open(csv_file_path, 'r', 阅读全文
posted @ 2024-01-21 15:16 冷夜O 阅读(11) 评论(0) 推荐(0)