我在網上下的教程和整個這段代碼傳來:蟒蛇:無法獲取urllib.request裏在pycharm工作
import random
import urllib.request
def download_web_image(url):
name = random.randrange(1, 1000)
full_name = str(name) + ".jpg"
urllib.request.urlretrieve(url, full_name)
download_web_image("https://buckysroom.org/photos/users/2/resized/2463a86fdf42a1681c66ba8fd6789f9d.jpg")
我用PyCharm作爲我的IDE和我得到追溯錯誤。
有什麼錯誤? – twasbrillig 2014-12-04 23:39:04
請分享回溯錯誤,以便我們爲您提供幫助。 – 2014-12-04 23:39:14
這與request.py中的函數有關;例如 文件 「C:\ Python34 \ lib中\的urllib \ request.py」,線1189,在do_open h.request(req.get_method(),req.selector,req.data,標頭) 文件「C :\ Python34 \ lib \ http \ client.py「,第1090行,請求 self._send_request(方法,url,正文,頭文件) 等 – chiangy77 2014-12-04 23:46:08