Awesome-Python-Scripts/Excel_to_ListofList/excel_to_list_usage.py

6 lines
197 B
Python
Raw Normal View History

2018-10-11 18:24:46 +00:00
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