网页
Simple DOM Demo This is the document body
This is paragraph 1.
段落2
广州商学院
我校校长杨文轩教授讲授新学期“思政第一课”
3月27日下午,我校校长杨文轩教授在第四教学楼310室为学生讲授了新学期“思政第一课”。
2018-03-28 马克思主义学院
练习
url='http://localhost:63342/bd/0328.html?_ijt=h9b41m2eup4kmk1cet0l4ai05j'import requestsfrom bs4 import BeautifulSoupres=requests.get(url)res.encoding='utf-8'print(type(res))soup=BeautifulSoup(res.text,'html.parser')print(type(soup))print(soup.a.attrs['href'])print(soup.li.text)print(soup.select('.news-list-title'))print(soup.a.attrs['href'])print(soup.select('fa fa-clock-o'))print(soup.select('fa fa-building-o')