larray.ExcelReport.sheet_names

ExcelReport.sheet_names(self)[source]

Returns the names of the output sheets.

Examples

>>> report = ExcelReport()
>>> sheet_pop = report.new_sheet('Pop')
>>> sheet_births = report.new_sheet('Births')
>>> sheet_deaths = report.new_sheet('Deaths')
>>> report.sheet_names()
['Pop', 'Births', 'Deaths']