X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/4e09563052459f99272cfee99d44f8a9abce85cb..d57af8e41dd0a0a46fc411ad2488d029244921e1:/solution_1.py diff --git a/solution_1.py b/solution_1.py index dc2c57b..fe18444 100644 --- a/solution_1.py +++ b/solution_1.py @@ -1,12 +1,7 @@ import scrabble - -# Print every word that has 9 or more letters and starts with a. - +# Print every word that has 9 or more letters and starts with a. for word in scrabble.wordlist: if word[0] == 'a' and len(word) >= 9: print word - - -