阅读前餐厅的专栏
原文:Read specific columns from excel for python
原文:Read specific columns from excel for python
import xlrd workbook = xlrd.open_workbook(filename) sheet = workbook.sheet_by_index(0) array = [] for i in range(2, 9): array.append([sheet.cell(i, j).value for j in range(2, 5)]) Excel Image ...