urllib.request 모듈을 Python 3.6.4와 함께 가져올 때마다 오류가 발생합니다.Python 3.6.4에서 urllib.request를 가져 오는 중 오류가 발생했습니다.
I 나타나는 오류는 없다 : ImportError를이 :
import urllib.request
import json
url = 'http://www.reddit.com/r/all/top/.json'
req = urllib.request.Request(url)
# parsing response
r = urllib.request.urlopen(req).read()
cont = json.loads(r.decode('utf-8'))
counter = 0
# parsing json
for item in cont['data']['children']:
counter += 1
print("Title: ", item['data']['title'], "\nComments:", item['data']['num_comments'])
print("----")
# print formatted
print("Number of titles: ", counter)
좋아, 그럼 무슨 조사를 했니? 귀하의 질문은 무엇인가? 게시 한 모든 코드가 오류와 관련이있는 이유는 무엇입니까? – roganjosh
전체 Traceback을 게시하십시오. 게시 한 오류가 게시 한 코드와 일치하지 않는 것 같습니다. – Galen