Python Challenge (level 12)

xiaoxiao2026-09-17  19

URI: [url]http://www.pythonchallenge.com/pc/return/evil.html[/url] Username: huge; password: file 说明: — 解题方法: # Get the data from: http://www.pythonchallenge.com/pc/return/evil2.gfxh = open("evil2.gfx", "rb")data = h.read()h.close()new_data = [[], [], [], [], []]n = 0for byte in range(len(data) - 1): new_data[n].append(data[byte]) n = 0 if n == 4 else n + 1for n, elt in enumerate(new_data): h = open(str(n + 1), "wb") h.write("".join(elt)) h.close() 过关答案: disproportional 相关资源:pythonchallenge level2官方方法集
转载请注明原文地址: https://www.6miu.com/read-5052778.html

最新回复(0)