major updates to the solutions
[wordplay-cdsw-solutions] / solution_4.py
index 613aacd9e71df99440ed9a543092669e7df43ad2..ee712315ceea10b0f0b39cc67cc641d054dab75b 100644 (file)
@@ -4,4 +4,4 @@ import scrabble
 
 for word in scrabble.wordlist:
     if len(word) == 6 and word[0] == 'a' and word[3] == 'e' and word[5] == 'y':
-        print word
+        print(word)

Benjamin Mako Hill || Want to submit a patch?