Name: Jhonson 2011-03-09 5:06
Can you help me write a program that finds what lowercase symbols are used most in a binary file?
[max(set(s),key=s.count)for s in[[ch for ch in open('asdf','rb').read()if ord('a')<= ord(ch)<= ord('z')]]][0]