剛開始學習,慢慢積累經(jīng)驗嘍!大家共勉
這個代碼是看博客拿到的兜畸,連接在此:python簡單學習
在python3.6版本下出現(xiàn)錯誤努释,
1. 出現(xiàn)AttributeError: module 'urllib' has no attribute 'urlopen'錯誤
解決方案:真正原因是在Python3.X中應該用urllib.request
錯誤1.png
2..TypeError: cannot use a string pattern on a bytes-like object??
解決方案:這種情況解決方法就是加上html=html.decode('utf-8')#python3這句代碼
具體可以看上面那個圖片。