我的查询是处理作为Im开发的解析脚本的一部分的函数。我试图编写一个python函数来查找与excel中匹配值对应的列号。excel是用openpyxl动态创建的,它有第一行(来自第三列)标题,每个标题跨4列合并为一行。在我的后续函数中,我正在分析一些要添加到与匹配的标题对应的列中的内容。(附加信息:我正在解析的内容是blast+output。我试图创建一个摘要电子表格,在每一列中都有点击名称,其中有点击、间隔、跨度和标识的子列。前两列是查询contigs及其长度。)
我最初为xlrd编写了一个类似的函数,它成功了。但是当我试图为openpyxl重写它时,我发现max_row和max_col函数错误地返回了比实际存在的行和列更多的行和列。例如,我有20行用于这个导频输入,但它报告为82行。
请注意,我手动选择了空的行和列,然后右键单击并删除它们,如本论坛其他地方所建议的那样。这并没有改变错误。def find_column_number(x):
col = 0
print "maxrow = ", hrsh.max_row
print "maxcol = ", hrsh.max_column
for rowz in range(hrsh.max_row):
print "now the row is ", rowz
if(rowz > 0):
pass
for colz in range(hrsh.max_column):
print "now the column is ", colz
name = (hrsh.cell(row=rowz,column=colz).value)
if(name == x):
col = colz
return colfor row in reversed(hrsh.rows):
values = [cell.value for cell in row]
if any(values):
print("last row with data is {0}".format(row[0].row))
maxrow = row[0].rowfor currentRow in hrsh.rows:
for currentCell in currentRow:
print(currentCell.value)
你能帮我解决这个错误吗,或者建议另一种方法来达到我的目的?