X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/715cf79efb1139d981e5716ed14f471fbeaddb2a..HEAD:/solution_1.py diff --git a/solution_1.py b/solution_1.py index fe18444..40ad9f3 100644 --- a/solution_1.py +++ b/solution_1.py @@ -1,7 +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)