重新编辑问题:
所以现在我有
imagepath = os.join.path (currentdirectory, fruit, size, fruitproperty + ".html")
现在我要将此路径插入以下代码:
htmlfile.write('<a href = imagepath > '+fruitproperty+' </a><br>\n')
所以我的问题是如何在其中插入imagepath?我试过各种方法,但都没用。
最佳答案
您可以使用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的值替换。