python--》xlrd,讀excel

import xlrd data = xlrd.open_workbook('1.xls')#打開文件 table = data.sheets()[0]#打開第一個sheet nrows = table.nrows#獲取表的行 for i in range(nrows): if i == 0 : continue print(table.row_values(i)[
相關文章
相關標籤/搜索