python - 标签树的下行遍历如何跳过第一个标签
大家讲道理
大家讲道理 2017-04-18 10:31:36
0
1
583

爬取网页用下行遍历的找出了我要的标签,但第一个的内容我是不要的用.children好像无法跳出第一个标签

for tr in soup.find(id="endText").children:
    if tr.string is not None:
        a = tr.string
        
        

网页的内容:


原链接:http://digi.163.com/14/1115/0...

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(1)
黄舟
p_list = list(soup.find(id="endText").find_all('p'))
for p in p_list[1:]:
    text = p.get_text()
    img = p.find("img")
    if img:
        print img.get('src')
    if text:
        print text
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!