Whitespace corrections, a couple bug fixes, replacing a format string with constructi...
[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?