from collections import Counterimport retxt = open('app.py').read()print Counter(re.split('\W+',txt)).most_common(3)
re.split('\W+',txt)表示以非单词字符划分。