101 Official 2 Letter Scrabble Words by xsot

i=65
for s in"ABDEGHILMNRSTWXY AEIOY  EO DFHLMNRSTX AE O AEIMO DFNST O AI AIO AEIMOUY AEOU DEFHIMNPRSWXY AEI I E HIO AIO HMNPST  EO IU AEO A".split(' '):
 if s:print' '.join(chr(i)+c for c in s)
 i+=1

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

download

return to the top page