标签: python list google-sheets-api gspread
我试图找到在其中找到该值的单元格旁边的单元格的值。我有一列用于标记和链接。如果链接具有特定标签,则应显示链接值。如何在python中使用google-spreadsheet API做到这一点?
我在文档中找不到解决方案。
ll = sheet.findall(topic) for i in ll: print(i.value)
如何更改它,以便它输出单元格旁边的列的值?