首页 > 代码库 > python 错误问题解决
python 错误问题解决
获取天气信息
#encoding:UTF-8import urllib.requestimport redef getHtml(url): page=urllib.request.urlopen(url) html=page.read() page.close() return html.decode(‘UTF-8‘)def getWeather(html): reg=‘<a href=http://www.mamicode.com/(.*?)>*‘ weatherList=re.compile(reg).findall(html) return weatherList weatherList=getWeather(getHtml(‘http://gd.weather.com.cn/‘)) for weather in weatherList: print (weather)
常见问题:
1. TypeError: can‘t use a string pattern on a bytes-like object
解决: python3中urllib.read返回的是bytes对象, 不是string,得把它转换成string对象,用bytes.decode方法
python 错误问题解决
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。