[解决方案] pythonchallenge level 4

http://www.pythonchallenge.com/pc/def/linkedlist.php

查看页面源代码或者点击图片

http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=12345

and the next nothing is 44827

本题将页面中的数字代替url中nothing的值

python:

import re
import requests
burl=‘http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=‘
new=u‘12345‘
res=re.compile(r‘and the next nothing is (\d+)‘)
while 1:
  gurl=requests.get(burl+str(new))
  content=gurl.text
  print content
  try:
    value=re.findall(res,gurl.text)[0]
    new,old=value,new
  except:
    status=raw_input(‘continue or break(c/b):‘)
    if status==‘c‘:
        rnew=raw_input(‘input the next nothing is number(default:%s/2)):‘ % new)
        if not rnew:
            new = int(new)/2
        else:
            new = int(rnew)
    else:
        break

最后得到:peak.html

 

http://www.pythonchallenge.com/pc/def/peak.html

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。