不熟悉 python,想用 python 把 xls 文件转成 json 格式,用了下面的代码,在 python shell 能正常输出中文,可是一保存到文件里就是\u 的形式,环境为 win7 x64,python 3.6,不知道要怎么解决
import xlrd
from collections import OrderedDict
import json
import codecs
wb = xlrd.open_workbook('1.xls')
convert_list = []
sh = wb.sheet_by_index(0)
title = sh.row_values(0)
for rownum in range(1, sh.nrows):
rowvalue = sh.row_values(rownum)
single = OrderedDict()
for colnum in range(0, len(rowvalue)):
print(title[colnum], rowvalue[colnum])
single[title[colnum]] = rowvalue[colnum]
convert_list.append(single)
j = json.dumps(convert_list)
with codecs.open('file.json',"w","utf-8") as f:
f.write(j)
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.