e: embezzlements, 37
d: decitizenizing, 36
.....</pre>
+
+
+### Wordplay Project Ideas
+
+The [Wordplay wiki page](http://wiki.communitydata.cc/Wordplay) also include
+several ideas for projects. These are listed as idea\_1.py, etc. in the
+directory:
+
+1. Find and print the words that start with "ee".
+2. Find and print the words that end in "mt". How about "gry"?
+3. Find and print the longest word that has no vowels.
+4. Find an print the words that contain 4 or more 'l's.
+5. Find and print the words that have all 5 vowels in alphabetical order.
--- /dev/null
+# 1. Find and print the words that start with "ee".
+
+import scrabble
+
+for word in scrabble.wordlist:
+ if word[0:2] == "ee":
+ print(word)
--- /dev/null
+# 2. Find and print the words that end in "mt". How about "gry"?
+
+import scrabble
+
+for word in scrabble.wordlist:
+ if word[-2:] == "mt":
+ print(word)
+ elif word[-3:] == "gry":
+ print(word)
+
--- /dev/null
+# 3. Find and print the longest word that has no vowels.
+
+import scrabble
+
+vowels = ['a', 'e', 'i', 'o', 'u']
+words_without_vowels = []
+
+for word in scrabble.wordlist:
+ vowel_in_word = False
+ for vowel in vowels:
+ if vowel in word:
+ vowel_in_word = True
+ if not vowel_in_word:
+ words_without_vowels.append(word)
+
+longest_word_length = 0
+longest_words = []
+for word in words_without_vowels:
+ if len(word) > longest_word_length:
+ longest_words = [word]
+ longest_word_length = len(word)
+ elif len(word) == longest_word_length:
+ longest_words.append(word)
+
+for word in longest_words:
+ print(word)
+
--- /dev/null
+# 4. Find an print the words that contain 4 or more 'l's.
+
+import scrabble
+
+for word in scrabble.wordlist:
+ number_of_ls = 0
+ for letter in word:
+ if letter == "l":
+ number_of_ls = number_of_ls + 1
+
+ if number_of_ls >= 4:
+ print(word)
+
--- /dev/null
+# 5. Find and print the words that have all 5 vowels in alphabetical order.
+
+import scrabble
+
+vowels = ["a", "e", "i", "o", "u"]
+
+for word in scrabble.wordlist:
+ found_vowels = []
+
+ for letter in word:
+ if letter in vowels:
+ found_vowels.append(letter)
+
+ if found_vowels == vowels:
+ print(word)
+