1. 程式人生 > >python3.6.1 常見問題彙總(1)

python3.6.1 常見問題彙總(1)

python升級到3+以後,import urllib2,不能在使用了,應該使用import urllib.request

程式碼如下:

import urllib.request


##基本訪問
response = urllib.request.urlopen("http://www.baidu.com")
print(response.read())