gpt4 book ai didi

python - 如何在 Python 脚本中使用 href 插入保存在文件夹中的 html 页面

转载 作者:太空宇宙 更新时间:2023-11-04 13:12:54 24 4
gpt4 key购买 nike

重新编辑问题:

所以我现在有

imagepath = os.join.path (currentdirectory, fruit, size, fruitproperty + ".html")

现在我想将此路径插入到以下代码中:

htmlfile.write('<a href = imagepath > '+fruitproperty+' </a><br>\n') 

所以我的问题是如何在其中插入图像路径?我尝试了各种方法,但没有用。

最佳答案

您可以使用 string.format ,例如 -

imagepath = os.join.path (currentdirectory, fruit, size, fruitproperty + ".html")
htmlfile.write(('<a href = {imagepath} > '+fruitproperty+' </a><br>\n').format(imagepath = imagepath))

此处,{}(花括号)内的 imagepath 将替换为 imagepath 的值。

关于python - 如何在 Python 脚本中使用 href 插入保存在文件夹中的 html 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31215530/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com