[解决方案] pythonchallenge level 5

l5=requests.get("http://www.pythonchallenge.com/pc/def/banner.p")

body = l5.text

lists = pickle.loads(body)

for line in lists:

  ret = ''

  for num in line:

    ret += num[0]*num[1]

  print ret

得channel

 

posted on 2016-02-17 15:54  hsp  阅读(147)  评论(0编辑  收藏  举报