如何在Python3.6中使用单元格值获取GSprem中单元格的坐标
问题描述
所有我都有一个单元格的值,我想知道该单元格在Gspend中的坐标。
假设我的日期为"12-11-2017"。我怎样才能找到有这个日期的单元格的坐标呢?我使用的是带有Gspend的python 3.6
解决方案
尝试此操作:
cell = worksheet.find("12-11-2017") #Find a cell with exact string value
print("Text found at R%sC%s" % (cell.row, cell.col))
Documentation可能是查找您需要的内容的好方法
相关文章