| 1. |
A chart object that is placed on a worksheet and saved along with that worksheet. |
|
Answer» ong>Answer: The worksheet class represents an Excel worksheet. It handles operations such as writing data to cells or FORMATTING worksheet layout. A worksheet object isn’t INSTANTIATED directly. INSTEAD a new worksheet is created by calling the add_worksheet() method from a Workbook() object: workbook = xlsxwriter.Workbook('filename.xlsx') worksheet1 = workbook.add_worksheet() worksheet2 = workbook.add_worksheet() worksheet1.write('A1', 123) workbook.close()  XlsxWriter supports Excels worksheet limits of 1,048,576 rows by 16,384 columns. worksheet.write() write(row, col, *args) Write generic data to a worksheet cell. Parameters: row – The cell row (zero indexed). col – The cell column (zero indexed). *args – The additional args that are PASSED to the sub methods such as number, string and cell_format. Returns: 0: Success. Returns: -1: Row or column is out of worksheet bounds. Returns: Other VALUES from the called write methods. |
|