6 lines
197 B
Python
Raw Normal View History

2018-10-11 23:54:46 +05:30
from ExcelToList import ExcelToList
exceltolist = ExcelToList("input.xlsx","Sheet1") ## args : Input filename, Sheet name
list_of_list = exceltolist.convert()
print "List of List : ",list_of_list