mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-23 20:11:07 +00:00
22 lines
613 B
Python
22 lines
613 B
Python
import xlrd
|
|
import sys
|
|
|
|
class ExcelToList():
|
|
|
|
def __init__(self, file, sheet):
|
|
self.file = file
|
|
self.sheet = sheet
|
|
|
|
def convert(self):
|
|
converted_list = []
|
|
inputexcel = xlrd.open_workbook(self.file)
|
|
inputsheet = inputexcel.sheet_by_name(self.sheet)
|
|
numberofrows = inputsheet.nrows
|
|
numberofcols = inputsheet.ncols
|
|
start_row,start_col = 0,0
|
|
for current_row in range(start_row,numberofrows):
|
|
currentlist = []
|
|
for current_col in range(start_col,numberofcols):
|
|
currentlist.append(inputsheet.cell(current_row,current_col).value)
|
|
converted_list.append(currentlist)
|
|
return converted_list |