求问 这个 选择器 怎么写
本帖最后由 yjsx86 于 2020-6-7 05:23 编辑选择所有的 a 元素, 其 href 值, 以 http 或者 https 开头, 并且 href 值的内容 需包含 baiduhttps://cdn.jsdelivr.net/gh/hishis/forum-master/public/images/patch.gif 这是Python 还是HTML{:10_249:} bs4还是xpath还是re? 本帖最后由 xiaosi4081 于 2020-6-7 08:42 编辑
from bs4 import BeautifulSoup
soup = BeautifulSoup(res.text,'lxml')
target = soup.find_all('a')
t = []
for each in target:
t.append(each['href'])
for each in t:
if 'baidu' in each:
print(each) 这个正则我好像不会{:10_269:}
不过我觉得有点奇怪呀,你都成熟鱼油了,怎么连个头像都...
页:
[1]