pythonchallenge Level 16

2021/12/7 11:20:28

本文主要是介绍pythonchallenge Level 16,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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

账号:huge 密码:file

标题: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")

图片显示romance

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



这篇关于pythonchallenge Level 16的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程