X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/7b538ea99568eb4511b2b92e3f55193796017866..d928fcd3abb683b79b79d8821998aa19025cbed5:/idea_1.py diff --git a/idea_1.py b/idea_1.py new file mode 100644 index 0000000..640761c --- /dev/null +++ b/idea_1.py @@ -0,0 +1,7 @@ +# 1. Find and print the words that start with "ee". + +import scrabble + +for word in scrabble.wordlist: + if word[0:2] == "ee": + print(word)