mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-23 20:11:07 +00:00
6 lines
197 B
Python
6 lines
197 B
Python
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 |