asunder by nick

import sys
a=[chr(z)for z in range(65,123)];a=a[:26]+a[32:]
i=sys.stdin.read()
for c in a:print("%s:%3s"%(c,i.count(c)))

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

download

return to the top page