我正在尝试打开excel电子表格中单个单元格的超链接。这是我试过的代码
import xlrd
import logging
wb=xlrd.open_workbook("hhh.xls")
sh=wb.sheet_by_index(3)
wsname=[]
for row in range(sh.nrows):
if sh.cell_value(row,15)=="Table":
print sh.cell_value(row,15)
print sh.cell_value(row,2)
link =sh.hyperlink_map.get(row,2)
url='(No URL)' if link is None else link.url_or_path
wsname = link.textmark.split('!')[0]
logging.debug("link=%s wsname=%s" % (link.textmark, wsname))
wstable=wb.sheet_by_name(wsname)
请帮我解决这个问题 这是错误
追踪(最近一次通话): 文件“reading.py”,第12行,in url ='(No URL)'如果链接为None,则为link.url_or_path AttributeError:'int'对象没有属性'url_or_path'
帮助........