我找到了一些关于使用python gdata库一次更新几个单元格的信息here。
但是,示例代码引用基于单个索引的单元格,例如仅更新电子表格的第一个条目:
batchRequest = gdata.spreadsheet.SpreadsheetsCellsFeed()
cells.entry[0].cell.inputValue = 'x'
batchRequest.AddUpdate(cells.entry[0])
假设我想要知道其位置的特定单元格,例如R1C3
和R2C2
。我该怎么做呢?换句话说,如何用cells.entry[0]
替换访问特定的行和列?
This related answer很有希望,除了所有的链接都已经死了。