我正在使用xlrd读取Excel 文件。在一列中,我有一个公司名称,其格式为超链接(意味着它后面有一个 URL)。当我得到单元格值时,我只得到公司名称。我怎样才能得到它背后的 URL?
下面是使用 xlrd 模块读取 Excel 文件的代码(假设文件已导入)。
mainData_book = xlrd.open_workbook("IEsummary.xls", formatting_info=True)
mainData_sheet = mainData_book.sheet_by_index(0) # Get the first sheet 0
start = 1
end = 101
for counter in range(start, end):
rowValues = mainData_sheet.row_values(counter, start_colx=0, end_colx=8)
company_name = rowValues[0] #how i can get link here also??