python怎么遍历excel表格 python如何遍历excel

主机教程 建站分享 2年前 (2022-12-15) 186次浏览

文章摘要:python怎么遍历excel表格 python如何遍历excel

在python中使用xlrd模块对excel表格进行遍历,具体方法如下: import xlrd #导入xlr […]

在python中使用xlrd模块对excel表格进行遍历,具体方法如下:

import xlrd #导入xlrd模块

bok = xlrd.open_workbook(r'E: empxxxx.xlsx') #excel表格路径

sht = bok.sheets()[0]

row =sht.nrows

for i in range(row):

rowdate = sht.row_values(i)#i行的list

for a,b in enumerate(rowdate):

print(i,a,b) #第i行,a列,数据b


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python怎么遍历excel表格 python如何遍历excel
文章链接:http://www.7966.org/post/13660.html
转载请注明出处

喜欢 (0)