https://www.shanghairanking.cn/rankings/gras/2022/RS0226把这个网址中的排名前五十的学校名称、排名以及所在国家爬虫到列表中
时间: 2023-12-10 07:02:54 浏览: 74
近8年软科中国大学排名数据集.rar
5星 · 资源好评率100%
好的,我可以帮您写一个Python爬虫来获取该网页中排名前50的学校名称、排名以及所在国家信息。以下是代码实现:
```python
import requests
from bs4 import BeautifulSoup
url = "https://www.shanghairanking.cn/rankings/gras/2022/RS0226"
response = requests.get(url)
soup = BeautifulSoup(response.text, "html.parser")
table = soup.find("table", class_="rk-table")
rows = table.find_all("tr")[1:51]
for row in rows:
cols = row.find_all("td")
rank = cols[0].text.strip()
name = cols[1].text.strip()
country = cols[2].text.strip()
print(f"Rank: {rank}, Name: {name}, Country: {country}")
```
运行以上代码,即可得到排名前50的学校名称、排名以及所在国家信息。
阅读全文