所以我想做这样的事情
sheet.row_values(5).col_values(3)
但这行不通,我只找到了类似的东西
sheet.col_values(3)
但这会给我第 3 列的每个项目,但我想要第 5 行和第 3 列中的项目。这样的事情可能吗?谢谢。
编辑:最后它应该是这样的:
Item = sheet.row_values(5).col_values(3)
if not Item:
sheet.insert(row, 5, col, 3, 'text') # That won't work too, I would be happy if someone could help me with that too