2
所以我有這樣的代碼:蟒蛇urllib的錯誤
def crawl(self, url):
data = urllib.request.urlopen(url)
print(data)
但後來當我打電話的功能,它返回
data = urllib.request.urlopen(url)
AttributeError: 'module' object has no attribute 'request'
我做了什麼錯?我已經導入的urllib ..
使用python 3.1.3