X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/4e09563052459f99272cfee99d44f8a9abce85cb..715cf79efb1139d981e5716ed14f471fbeaddb2a:/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 - - -