如何加入包含引号的字符串?这是一个生成 HTML 图像标签的程序的示例。但是程序打印不正确。
import sys
sys.stdout = open("/Users/kyle/images.html", "w")
for x in xrange(100,490):
site = "http://www.example.com/image"+str(x)+".jpg"
print "<img src=""+site+"">"
它将以这种方式正确打印print "<img src="+'"'+site+'"'+">"
但我想知道是否还有另一种更简单的方法。