Python xlwt单元格中加超链接

645次阅读
没有评论
Python

平时给文本加超链接相信大家都会,在表格中用xlwt就难倒了,今天我们一起来学习吧。

问题:

 

在excel单元格中的文本下方添加一个URL作为链接,以便用户可以访问该网站,但无法运行。

base = xlwt.Workbook() for k,v in MainDict.items():    base.add_sheet(k)    xlwt.add_palette_colour(“custom_colour”, 0x21)    base.set_colour_RGB(0x21, 251, 228, 228)    style = xlwt.easyxf(‘pattern: pattern solid, fore_colour custom_colour;font : bold on’)    style1 = xlwt.easyxf(‘font : underline single’)    index = MainDict.keys().index(k)    ws = base.get_sheet(index)    col=0    for sk in MainDict[k].keys():        ws.write(0,col,sk.upper(),style)        col+=1        row =1        for mk in MainDict[k][sk].keys():            for lk,lv in MainDict[k][sk][mk].items():                for items in lv:                    ws.write(row,col-1,(items + str(Formula(‘HYPERLINK(“%s”)’%mk))))                    row+=1 base.save(‘project2.xls’)

</pre>
 

解决:

你需要使文本的一部分Formula,&将与串联帮助。例:

 

import xlwt wb = xlwt.Workbook() ws = wb.add_sheet(‘test’) ws.write(0, 0, xlwt.Formula(‘”test ” & HYPERLINK(“http://google.com”)’)) wb.save(‘test.xls’)
<pre class="brush:js;toolbar:false">

以上就是xlwt单元格中加超链接的方法啦。

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2021-06-06发表,共计915字。
新手QQ群:570568346,欢迎进群讨论 Python51学习