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
今天在学习bs4的解析html中 发现有解析各种标签中的内容的语句,但是未找到能解析出h1 h2 h3 h4这些标签中的文字的语句和参数啊,请问该如何进行筛选呢?
光阴似箭催人老,日月如移越少年。
>>> from bs4 import BeautifulSoup >>> html = """ <html> <h1 align="center">This is heading 1</h1> </html> """ >>> soup = BeautifulSoup(html,'html.parser') >>> res = soup.find('h1').get_text() >>> print(res) This is heading 1
Comme ça ?
h1.string
Comme ça ?
h1.string