现有一个需求要将json转成excel,使用python将其转为csv格式,使用excel打开即可。 import json import csv import codecs f = open('test.json') data = json.load(f) ...
確定! 回上一頁