X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/884ad8e21ea1ea9d1dd411b2a503d0dff4294c59..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 - - -