X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/884ad8e21ea1ea9d1dd411b2a503d0dff4294c59..HEAD:/solution_1.py diff --git a/solution_1.py b/solution_1.py index dc2c57b..40ad9f3 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 the letter "a" for word in scrabble.wordlist: if word[0] == 'a' and len(word) >= 9: - print word - - - + print(word)