lshboo 发表于 2017-4-26 10:36:29

Python Challenge (level 2)

URI: http://www.pythonchallenge.com/pc/def/ocr.html
http://lampeter123.iteye.com/upload/attachment/120136/13cb242b-5a6e-3ad5-bb14-2c8adcb5c93c.jpg

说明:
图画中出现一本很模糊的书,但真正的答案要从页面的源代码中找
提示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("", data))


过关答案:
equality
页: [1]
查看完整版本: Python Challenge (level 2)