import xlrddata = xlrd.open_workbook('excelFile.xls')table = data.sheet_by_index(0) #通过索引顺序获取,0表示第一张表data = [table.cell(i,ord('G')-ord('A')).value for i in range(1, 90)]