Excel表格数据读写(python代码)
Posted supersaiyan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Excel表格数据读写(python代码)相关的知识,希望对你有一定的参考价值。
1 #读取表格内容 2 import xlrd 3 wb = xlrd.open_workbook(filename=file)#打开文件 4 sheet_names = wb.sheet_names() #读取文件名称 5 Sheet=wb.sheet_by_index(i) #i为表格文件中表的序号 6 Row=sheet.nrows #表的行数 7 Col=sheet.ncols #表的列数 8 Data=sheet.row_values(i)#读取第i行 9 Data=sheet.col_values(i)#读取第i列 10 for row in sheet.get_rows():# 按行读取所有单元格的值 11 for col in row: 12 print(col.value)
1 #写入 2 import xlwt 3 wb = xlwt.Workbook() #定义表格对象 4 sheet = wb.add_sheet(‘sheet1‘) 5 for row in range(10) :#按行写入值 6 for col in range(5): 7 sheet.write(row, col, ‘第{0}行第{1}列‘.format(row, col)) 8 wb.save(‘xxx.xls‘) #保存名称
以上代码基于python对于Excel的读写操作,本人使用的是python3.X版本,比较基础,但是比较常用到。
其他文件格式项式word/txt等等,网上会有很多代码。
若大家有何特殊文件格式需要读写的,可以留言呀,互相帮助。
以上是关于Excel表格数据读写(python代码)的主要内容,如果未能解决你的问题,请参考以下文章