added new python programs with solutions for the ideas listed on the wordplay page
[wordplay-cdsw-solutions] / idea_1.py
1 # 1. Find and print the words that start with "ee".
2
3 import scrabble
4
5 for word in scrabble.wordlist:
6     if word[0:2] == "ee":
7         print(word)

Benjamin Mako Hill || Want to submit a patch?