答案在source code里找, 一大段莫名代码
还好一开始有提示 "find rare characters in the mess below"
我歪打正着, 就找里面的 字母字符
j='' for i in a: asc_value = ord(i) if asc_value > 96 and asc_value < 123: j+=i; print j
实际上 rare character比我理解的要复杂的 http://www.pythonchallenge.com/pcc/def/ocr.html