列表问题
if __name__=="__main__":urls=['https://xx.com/a/xx_{}.html'.format(str(i)) for i in range(2,3,1)]
for url in urls:
print(url)
bigShot(url)
time.sleep(2)
以上为源程序
第一个地址应该是:https://xx.com/a/xx.html
第二个地址才是:https://xx.com/a/xx_2.html
但是我用上面的程序 我就无法遍历 第一个地址
我的问题是 怎么遍历到第一个地址:https://xx.com/a/xx.html
urls = ['https://xx.com/a/xx.html']
urls += ['https://xx.com/a/xx_{}.html'.format(str(i)) for i in range(2,3,1)] Twilight6 发表于 2020-6-5 23:33
谢谢大神 slhlde 发表于 2020-6-5 23:38
谢谢大神
客气了加油
https://xxx.ilovefishc.com/forum/202005/27/132745rjvcvw1z2148jthd.gif
页:
[1]