added new python programs with solutions for the ideas listed on the wordplay page
[wordplay-cdsw-solutions] / solution_3.py
1 import scrabble
2
3 # Find all the words that end in 'nge'
4 for word in scrabble.wordlist:
5     if word[-3:] == 'nge':
6         print(word)

Benjamin Mako Hill || Want to submit a patch?