pycharm爬取软科-高等教育评价领先品牌院校一栏里面的内容
时间: 2023-07-12 20:00:46 浏览: 81
pycharm-community-2024.1.2-aarch64
好的,以下是使用Python和BeautifulSoup解析软科-高等教育评价领先品牌院校页面并输出内容的代码:
```python
import requests
from bs4 import BeautifulSoup
# 发送HTTP请求并获取响应内容
url = 'http://www.zuihaodaxue.com/zuihaodaxuepaiming2019.html'
response = requests.get(url)
html = response.text
# 使用BeautifulSoup解析HTML
soup = BeautifulSoup(html, 'html.parser')
table = soup.find('table', {'id': 'rank'})
# 输出表格数据行
for tr in table.tbody.find_all('tr'):
row = []
for td in tr.find_all('td'):
row.append(td.text.strip())
print('\t'.join(row))
```
这个代码会将软科-高等教育评价领先品牌院校页面的表格数据解析并输出到控制台中。您可以根据需要对输出进行调整,例如将输出保存到文件中等。
阅读全文