我的代码如下,提取所有元素
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秒到达战场
用grep在一行中匹配两个字符串
字符串匹配问题
获取特定子字符串后面的字符串
如何匹配包含unicode字符的完整字符串?
相关分类