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

Benjamin Mako Hill || Want to submit a patch?