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