Merge pull request #1 from ben-zen/master
[wordplay-cdsw-solutions] / solution_1.py
index dc2c57b68ca78c07411e39e06549f5e860f0bc1e..fe18444bc69cb2012f831eabb0f33188f7d0e60c 100644 (file)
@@ -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
-            
-
-

Benjamin Mako Hill || Want to submit a patch?