xlrd操作Excel实例(自我测试)
import xlrd
#使用xlrd命令准备打开文件。同时将文件的句柄赋值给fp。
fp = xlrd.open_workbook(r"e:\ccc\成绩测试.xls",“r”)
#获得该Excel文件有几张表格。
sheet_n = fp.nsheets
print(sheet_n)
#获得表格的名字并存储为列表形式。
sheet_name = fp.sheet_names()
print(sheet_name)
#将我们需要处理的表设置对应的句柄,此处提供三种打开方案,分别是按照序号,按照表格名字,和按照索引。
sheet1 = fp.sheets()[0]
print(sheet1)
sheet1_2 = fp.sheet_by_name(sheet_name[0])
print(sheet1_2)
sheet1_3 = fp.sheet_by_index(0)
print(sheet1_3)
#准备储存sheet1表格的内容按行存储在列表中。
list_row = []
for i in range(sheet1.nrows):
list_row.append(sheet1.row_values(i))
for k in list_row:
if k[0] == “2班”:
print(k)
#获得表格的总行数和总列数。
row_s = sheet1.nrows
col_s = sheet1.ncols
print(row_s,col_s)
#将某行或者某列的数据保存为列表。
#将第3行和第3列的数据保存为列表。
row3 = sheet1.row_values(2) #这里注意列表是按照从0开始的,所以第3行的索引值为2。
col3 = sheet1.col_values(2) #注意同上。
print(row3)
print(col3)
注意:以上是对Excel表格的基本读入,对于后续的操作,可以按照python的语法进行处理。这里读入的不包括Excel中的合并单元格等特殊格式。