我有一个这样的列表:
website = ['http://freshtutorial.com/install-xamp-ubuntu/', 'http://linuxg.net/how-to-install-xampp-on-ubuntu-13-04-12-10-12-04/', 'http://ubuntuforums.org/showthread.php?t=2149654', 'http://andyhat.co.uk/2012/07/installing-xampp-32bit-ubuntu-11-10-12-04/', 'http://askubuntu.com/questions/303068/error-with-tar-command-cannot-install-xampp-1-8-1-on-ubuntu-13-04', 'http://askubuntu.com/questions/73541/how-to-install-xampp']
我想搜索以下列表是否包含某个 URL。
URL 将采用以下格式:url = 'http://freshtutorial.com'
该网站是列表的第一个元素。因此,我想打印1 而不是 0。
我想要循环中的所有内容,以便如果没有具有该 URL 的网站,它将再次运行并动态生成列表并再次搜索该网站。
到目前为止,我已经这样做了:
for i in website:
if url in website:
print "True"
我似乎无法打印位置并将所有内容都包装在循环中。regex
另外,使用还是if this in that
语法更好。谢谢