python读取excel数据转换成字典

Posted 生涯无畏

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读取excel数据转换成字典相关的知识,希望对你有一定的参考价值。

 

 以上面的excel格式,输出字典类型:




import xlrd


def read_excel_data():
filename = \'E:\\学历列表.xls\'
data = xlrd.open_workbook(filename)
table = data.sheet_by_name(\'Sheet1\')
row_num = table.nrows # 行数
# col_num = table.ncols # 列数
datas = dict([]) # 这步也要转字典类型
for i in range(row_num):
xx = dict([table.row_values(i)]) # 这一步就要给它转字典类型,不然update没法使用
datas.update(xx)
print(datas)
# print("字典中保存的学历:", datas[key])

if __name__ == "__main__":
read_excel_data()


结果:{10.0: \'研究生教育\', 11.0: \'博士研究生毕业\', 12.0: \'博士研究生结业\', 13.0: \'博士研究生肄业\', 14.0: \'硕士研究生毕业\'}

以上是关于python读取excel数据转换成字典的主要内容,如果未能解决你的问题,请参考以下文章

Python 如何读取excel中的字典数据

python读取excel表并把数据转存为字典

python-docxtpl妙用:论文神器,excel习题集自动转换成word文档格式!

Python代码阅读(第26篇):将列表映射成字典

使用python脚本,读取excel表格生成erlang数据

python 将txt文件转换成字典