Add a license.
[wordplay-cdsw-solutions] / solution_3.py
1 import scrabble
2
3
4 # Find all the words that end in 'nge' 
5
6
7 for word in scrabble.wordlist:
8     if word[-3:] == 'nge':
9         print word
10             
11
12

Benjamin Mako Hill || Want to submit a patch?