Python Challenge (level 19)

xiaoxiao2026-09-14  12

URI: [url]http://www.pythonchallenge.com/pc/hex/bin.html[/url] Username: butter; password: fly 说明: — 解题方法: import base64, wave, array# Input ...h = open("data")a = array.array("c", base64.b64decode(h.read()))a.byteswap()h.close()# ... Processing ...h = wave.open("modified.wav", "wb")h.setnchannels(1)h.setsampwidth(1)h.setframerate(22050)# ... Outputh.writeframes(a.tostring())h.close()过关答案: idiot 相关资源:Java 面经手册·小傅哥(公众号:bugstack虫洞栈).pdf
转载请注明原文地址: https://www.6miu.com/read-5052685.html

最新回复(0)