[解决方案] 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
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