Python挑战第四关follow the chain

原题地址follow the chainhttp://www.pythonchallenge.com/pc/def/linkedlist.php

打开后有一张图片,点击后进入:http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=12345

提示下一个nothing值,然后填写nothing值,又得到一个新nothing值。。。。。。。。。。

好吧!按照惯例查看源码:urllib may help. DON'T TRY ALL NOTHINGS, since it will never end. 400 times is more than enough. 

让你用urllib解决,他说400多个nothing值不可能一个一个去填。

写了个循环,其实没到400我到第272个网页,nothing值为66831时就结束了:http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=66831

访问这个网页得到:peak.html

于是下一关:http://www.pythonchallenge.com/pc/def/peak.html


源代码:

import urllib2
i=0
nexturl='http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=12345'
while(True):
    data = urllib2.urlopen(nexturl).read()
    nothing = str(data).split(' ')[5]  #由于文本很规范简单提取nothing值
    nexturl ='http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing='+ nothing
    print str(i)+'   '+ nexturl
    i=i+1



评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

胡宝全

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值