Updates the value of a cell. :param str label: Cell label in A1 notation. :param value: New value. Example:: worksheet.update_acell('A1', '42')
(self, label: str, value: Union[int, float, str])
| 731 | return [] |
| 732 | |
| 733 | def update_acell(self, label: str, value: Union[int, float, str]) -> JSONResponse: |
| 734 | """Updates the value of a cell. |
| 735 | |
| 736 | :param str label: Cell label in A1 notation. |
| 737 | :param value: New value. |
| 738 | |
| 739 | Example:: |
| 740 | |
| 741 | worksheet.update_acell('A1', '42') |
| 742 | """ |
| 743 | return self.update_cell(*(a1_to_rowcol(label)), value=value) |
| 744 | |
| 745 | def update_cell( |
| 746 | self, row: int, col: int, value: Union[int, float, str] |