Python xlrd模块 api备忘
x = xlrd.open_workbook(filename) 打开一个文件
## sheets() ## Returns: A list of all sheets in the book.
## sheet_by_name(sheet_name) ## sheet_name Name of sheet required
Returns: An object of the Sheet class
x = xlrd.open_workbook(filename) 打开一个文件
## sheets() ## Returns: A list of all sheets in the book.
## sheet_by_name(sheet_name) ## sheet_name Name of sheet required
Returns: An object of the Sheet class