Word frequency count FIXED by kt3k

a=''.join(x.lower()for x in open('/dev/fd/0').read()if x.isalpha()or'!'>x).split()
for i in sorted(set(a)):print a.count(i),i

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page