Update README.md
[wordplay-cdsw-solutions] / solution_1.py
1 import scrabble
2
3
4 # Print every word that has 9 or more letters and starts with a. 
5
6
7 for word in scrabble.wordlist:
8     if word[0] == 'a' and len(word) >= 9:
9         print word
10             
11
12

Benjamin Mako Hill || Want to submit a patch?