刚开始学习,慢慢积累经验喽!大家共勉
这个代码是看博客拿到的,连接在此:python简单学习
在python3.6版本下出现错误,
1. 出现AttributeError: module 'urllib' has no attribute 'urlopen'错误
解决方案:真正原因是在Python3.X中应该用urllib.request
2..TypeError: cannot use a string pattern on a bytes-like object
解决方案:这种情况解决方法就是加上html=html.decode('utf-8')#python3这句代码
具体可以看上面那个图片。