pythonchallenge闖關 第7題
阿新 • • 發佈:2017-10-02
pytho 問題 馬賽克 真的 spa () col 闖關 ide
7、Hint:給了一副圖片‘oxygen.png‘,中間有一道馬賽克
先試著把馬賽克像素返回為內容
rgba模式(r=red,g=green,b=blue,a=alpha--->透明度)
這道題真的有問題……自己量的像素……
用PIL 這道題我用的python2.7
馬賽克長:(1,608)寬(44,52)
每七個像素一組
import PIL.Image print PIL.Image.open(‘oxygen.png‘).tostring()[108188:110620:28](7.1)
結果是:smart guy, you made it. the next level is [105, 110, 116, 101, 103, 114, 105, 116, 121]
import PIL.Image print PIL.Image.open(‘oxygen.png‘).tostring()[108188:110620:28] l = [105, 110, 116, 101, 103, 114, 105, 116, 121] print ‘‘.join(map(chr, l))(7.2)
替換URL為integrity
pythonchallenge闖關 第7題