pythonchallenge Level 16

第16关地址:http://www.pythonchallenge.com/pc/return/mozart.html

账号:huge 密码:file

pythonchallenge Level 16

标题:let me get this straight

源码里也没有什么,只能从图片找线索

每一行都是一条红线,按行打印出像素点的色值查看下,发现每行的红线都是连续的5个195

把红线放到左边,重排这幅图

from PIL import Image

img = Image.open('mozart.gif')
width,height = img.size

for y in range(height):
    colors = [img.getpixel((x,y)) for x in range(width)]
    start = colors.index(195) # 获取红线起始位置
    colors = colors[start:] + colors[:start] # 将红线移动到最左边
    for x in range(width):
        img.putpixel((x,y),colors[x]) # 重画

img.save("mozart.png")

pythonchallenge Level 16

图片显示romance

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

上一篇:PAT (Basic Level) Practice (中文)1090 危险品装箱 (25 分)


下一篇:pythonchallenge Level 6