我需要每周更新一个带有一些数字的 Google 表格中的日历。我正在使用 pygsheets find 来查找日期,但是我无法获取该单元格的列,因此我可以更新该列中的某些行。
enter code here
for key in list:
sheet_name = list[key]
print(sheet_name)
# Access the sheet
sheet = report.worksheet_by_title(sheet_name)
header = sheet.find(first_day_period)
print(header)
[<Cell H2 '21 Sep 2020'>]
find 返回的是一个单元格列表,但是如果不拆分结果然后使用它来查找单元格,我就无法访问该列。我想知道是否有一种更简单、更清洁的方法。