首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

Python Challenge札记 - 1

2012-12-22 
Python Challenge笔记 - 1http://www.pythonchallenge.com/pc/def/map.html图片中提示 K-MO-QE-G下面给

Python Challenge笔记 - 1
http://www.pythonchallenge.com/pc/def/map.html
图片中提示 K->M  O->Q  E->G
下面给了一段话 看起来是加密过了的 根据提示可以知道 每个字母后移了2位
使用string和maketrans可以解决此问题
解密出来的文字提示使用这个规律解密地址 将map解密后得到 ocr即下一关地址
http://www.pythonchallenge.com/pc/def/ocr.html

>>> import string>>> l = string.lowercase>>> t = string.maketrans(l, l[2:] + l[:2])>>> m = """g fmnc wms bgblr rpylqjyrc gr zw fylb. rfyrq ufyr amknsrcpq ypc dmp. bmgle gr gl zw fylb gqglcddgagclr ylb rfyr'q ufw rfgq rcvr gq qm jmle. sqgle qrpgle.kyicrpylq() gq pcamkkclbcb. lmuynnjw ml rfc spj.""">>> print m.translate(t)i hope you didnt translate it by hand. thats what computers are for. doing it in by hand isinefficient and that's why this text is so long. using string.maketrans() is recommended. nowapply on the url.>>> print "map".translate(t)ocr

热点排行