我有一个excel文件,我需要一种能够搜索单元格的特定行并从该单元格中提取该行并删除其周围其余文本的方法。不知道最好的方法是什么。我在python中感觉到某种脚本,但是我不太确定该怎么做。这是我到目前为止所拥有的,现在我被困住了。任何帮助将不胜感激
import xlrd
datafile = "test.xlsx"
workbook = xlrd.open_workbook(datafile)
sheet = workbook.sheet_by_index(0)
for row in range(sheet.nrows):
for col in range(sheet.ncols):
if sheet.cell_value(row, col) ==