2016-03-07 40 views

回答

1

你的做法是正確的,但需要一些變化。可以遍歷像這樣的列表:

x = ['http://exampleurl.com/index.php', 'http://exampleurl2.com/in_dex1.php', 
    'http://exampleurl.com/posts/images', 'http://exampleurl2.com/posts/tags/etc'] 
for i in x: 
    if 'posts' in i: 
     print i 
     break 
+1

非常感謝!有用! – Alex

0

篩選使用列表理解列表,然後得到的第一個元素

[url for url in urls if 'posts' in url][0] 
1

您還可以使用next()

next(url for url in urls if 'posts' in url) 
相關問題