X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/884ad8e21ea1ea9d1dd411b2a503d0dff4294c59..HEAD:/solution_3.py diff --git a/solution_3.py b/solution_3.py index a3ea28d..4916f57 100644 --- a/solution_3.py +++ b/solution_3.py @@ -1,12 +1,6 @@ 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 - - - + print(word)