您的位置:首页 > 移动开发 > IOS开发

路由器密码破解和IOS备份&升级

2010-04-15 20:51 267 查看
URI: http://www.pythonchallenge.com/pc/def/ocr.html



说明:
图画中出现一本很模糊的书,但真正的答案要从页面的源代码中找
提示1:recognize the characters. maybe they are in the book, but MAYBE they are in the page source.
提示2:find rare characters in the mess

解题方法:
import re

data = ''' ''' #三引号中填入页面的数据

print "".join(re.findall("[A-Za-z]", data))


过关答案:
equality
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐