(worksheet, position, step_row=0, step_column=0, index=0)
| 22 | |
| 23 | |
| 24 | def cell(worksheet, position, step_row=0, step_column=0, index=0): |
| 25 | row = position[0] |
| 26 | column = position[1] |
| 27 | return worksheet.cell(row=row + index * step_row, |
| 28 | column=column + index * step_column) |
| 29 | |
| 30 | |
| 31 | def sheet(workbook, sheet_name): |