我的代码如下,提取所有元素
for link in soup.find_all('a', href=True):
print(link['href'])
输出
https://www.example.com/author/1/
https://www.example.com/about/2/
https://www.example.com/author/3/
(link['href']) 的类型
<cls str>
<cls str>
<cls str>
我需要提取包含“about”的网址
我尝试用print(link['href'] if 'about' in link)哪个抛出错误
我的预期结果
https://www.example.com/about/2/
慕村9548890
30秒到达战场
相关分类