我有一个网址,其格式如下:
input:-webkit-autofill {
background-color: rgb(250, 255, 189) !important;
}
我想根据位置列表生成抓取列表
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
background-color: rgb(250, 255, 189) !important;
}
我将迭代该列表,但我想要做的是创建一个URL,如:
http://www.xf.com/position/?number=1&From=top&To=bottom
能够用我的列表中的元素替换X和Y,比如
positionToCrawl = [top, bottom, left, center, right]
如果你们知道一个类似的东西的图书馆会有其他方式,我想我必须实施它,但我确信这已经实现了,但我没有找到它
答案 0 :(得分:2)
您可以使用.format()
:
'http://www.xf.com/position/?number=1&From={0}&To={1}'.format('left', 'right')