如何利用python爬虫获取数据
展开全部
以下代码运行通过:
import re
import requests
def ShowCity():
html = requests.get("http://www.tianqihoubao.com/weather/province.aspx?id=110000")
citys = re.findall('<td style="height: 22px" align="center"><a href="http://blog.163.com/lucia_gagaga/blog/(.*?)">', html.text, re.S)
for city in citys:
print(city)
ShowCity()
运行效果:
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询