pythonchallenge Level 5

Posted OTAKU_undefined

tags:

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

第5关地址:http://www.pythonchallenge.com/pc/def/peak.html

页面提示信息:pronounce it

查看源码获得提示:peak hell sounds familiar ? 

有个src:http://www.pythonchallenge.com/pc/def/banner.p

使用pickle处理banner.p

from urllib.request import urlopen
import pickle

url = "http://www.pythonchallenge.com/pc/def/banner.p"
html = urlopen(url)

for line in pickle.load(html):
    for info in line:
        for i in range(info[1]):
            print(info[0],end="")
    print("")

打印出下一关信息

获得下一关地址:http://www.pythonchallenge.com/pc/def/channel.html

本文来自博客园,作者:OTAKU_undefined,转载请注明原文链接:https://www.cnblogs.com/nicole-zhang/p/15557454.html

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

pythonchallenge Level 2

pythonchallenge Level 8

pythonchallenge Level 4

pythonchallenge Level 7

pythonchallenge Level 3

pythonchallenge Level 6