Import error: No module name urllib2

后端 未结 9 971
隐瞒了意图╮
隐瞒了意图╮ 2020-11-22 06:42

Here\'s my code:

import urllib2.request

response = urllib2.urlopen(\"http://www.google.com\")
html = response.read()
print(html)

Any help?

9条回答
  •  悲哀的现实
    2020-11-22 07:31

    In python 3, to get text output:

    import io
    import urllib.request
    
    response = urllib.request.urlopen("http://google.com")
    text = io.TextIOWrapper(response)
    

提交回复
热议问题