IOError:[Errno 0]在python 2.7

时间:2018-05-01 09:04:16

标签: python python-2.7 python-2.x

# -*- coding: utf-8 -*-

from urllib2 import Request
import urllib

values = raw_input("keyword : ")
params = urllib.pathname2url(values)
url = "https://search.naver.com/search.naver? 
where=nexearch&sm=top_hty&fbm=0&ie=utf8&query=" + params
print(url)

data = urllib.urlopen(url).read()
print(data)

enter image description here

这是我的代码,我得到了这个错误。我不知道解决这个问题......

0 个答案:

没有答案