84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
爬取网页用下行遍历的找出了我要的标签,但第一个的内容我是不要的用.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...
光阴似箭催人老,日月如移越少年。
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
光阴似箭催人老,日月如移越少年。