是
时间: 2024-02-29 13:52:47 浏览: 77
is-is
好的,以下是Python爬虫代码,可以爬取中国医药类前十大学排行榜:
```python
import requests
from bs4 import BeautifulSoup
url = "https://shanghairanking.cn/rankings/bcur/202321"
response = requests.get(url)
soup = BeautifulSoup(response.text, "html.parser")
table = soup.find("table", class_="rk-table")
rows = table.find_all("tr")
for row in rows[1:11]:
cols = row.find_all("td")
rank = cols[0].text.strip()
name = cols[1].text.strip()
score = cols[2].text.strip()
print(rank, name, score)
```
这段代码会输出中国医药类前十大学的排名、名称和得分。注意,这个网站可能会有反爬虫机制,所以请遵守网站的使用规则。
阅读全文