Python Challenge 第 2 关攻略:ocr

text="那一大推乱码"
方案1

from collections import Counter
print(Counter(text))

方案2

import string
>>> filter(lambda x: x in string.letters, text)
'equality'
posted @ 2018-09-26 11:17  公众号python学习开发  阅读(235)  评论(0编辑  收藏  举报