pythonchallenge闯关 第4题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pythonchallenge闯关 第4题相关的知识,希望对你有一定的参考价值。

4、Hint:(1)urllib可能会有帮助。不要尝试一直循环,停不下来。400次就已经足够了

     (2)www.pythonchallenge.com/pc/def/linkedlist.php?nothing=12345

进入链接之后会提示下一个nothing=的值

用urllib库和re库 类似于爬虫

技术分享
# -*- coding:UTF-8 -*-

from urllib import request
import re

def findURL(x):
    while x.isdigit():
        url = http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=+x
        print(url)
        response = request.urlopen(url)
        html = response.read()
        html = html.decode(utf-8)
        print(html)
        replacetext = re.findall(r[0-9], str(html))
        print(replacetext)
        x = "".join(replacetext)
    return html

if __name__ == __main__:
    findURL(12345)
    findURL(8022)
(4)

中间会有一个页面内容是:Yes. Divide by two and keep going.

只好包装成函数然后再继续运行

最后答案是peak.html

以上是关于pythonchallenge闯关 第4题的主要内容,如果未能解决你的问题,请参考以下文章

pythonchallenge闯关 第2题

pythonchallenge闯关 第0题

pythonchallenge闯关 第1题

pythonchallenge闯关 第3题

pythonchallenge闯关 第9题

pythonchallenge闯关 第6题