欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

urllib2报错,用urllib.request来代替

程序员文章站 2022-05-03 21:29:19
...

urllib2报错,用urllib.request来代替

正确代码:

import urllib.request
response=urllib.request.urlopen("http://python.org/")
html=response.read()
#print(len(html))
tokens=[tok for tok in html.split()]
print(tokens[0:100])

注意这里网址一定要用双引号!!!
最后运行正确:
urllib2报错,用urllib.request来代替

相关标签: python