获取到了67个列表页,但是每个列表页没法单独取出来?

forpageinrange(1,67):
url_list='http://top.chinaz.com/hangye/index_news_{}.html'.format(page)#获取列表页链接
#url_list1=url_list.split()
print(type(url_list))
print(url_list)
输出结果:
http://top.chinaz.com/hangye/index_news_1.html
http://top.chinaz.com/hangye/index_news_2.html
http://top.chinaz.com/hangye/index_news_3.html
http://top.chinaz.com/hangye/index_news_4.html
...
http://top.chinaz.com/hangye/index_news_67.html
我把获取到的链接,都赋给了url_list。打印一下url_list的内容和类型。请问,怎么从url_list里把每一个链接单独取出来?因为我后面需要把每个链接都单独打开。
Qyouu
浏览 409回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript