python xlrd读取和操作excel的常用方法
2020-09-23 本文已影响0人
史蒂夫sdf
安装xlrd模块(cmd命令)
pip install xlrd
引入xlrd模块和读取本地excel
import xlrd
book = xlrd.open_workbook('./test.xlsx')
常用方法
for i in book.sheet_names(): #读取excel每页的名字
sheet = book.sheet_by_name(i) #读取指定页
sheet.row_values(0) #行数组
sheet.nrows #行数
sheet.col_values(0) #列数组
sheet.ncols #列数
sheet.cell(0,0) #指定位置
sheet.cell(0,0).ctype #单元格类型0 empty,1 string, 2 number, 3 date, 4 boolean, 5 error