X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/4e09563052459f99272cfee99d44f8a9abce85cb..d57af8e41dd0a0a46fc411ad2488d029244921e1:/solution_3.py diff --git a/solution_3.py b/solution_3.py index a3ea28d..ea53edf 100644 --- a/solution_3.py +++ b/solution_3.py @@ -1,12 +1,7 @@ import scrabble - -# Find all the words that end in 'nge' - +# Find all the words that end in 'nge' for word in scrabble.wordlist: if word[-3:] == 'nge': print word - - -