Import error: No module name urllib2

后端 未结 9 981
隐瞒了意图╮
隐瞒了意图╮ 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:35

    That worked for me in python3:

    import urllib.request
    htmlfile = urllib.request.urlopen("http://google.com")
    htmltext = htmlfile.read()
    print(htmltext)
    

提交回复
热议问题