Created
January 21, 2015 20:51
-
-
Save BrianHicks/e8362faa2036d83f48b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> words = open('/usr/share/dict/words', 'r').read().lower().split() | |
>>> [word for word in words if 'idiot' in word] | |
['aspidiotus', 'idiot', 'idiotcy', 'idiothalamous', 'idiothermous', 'idiothermy', 'idiotic', 'idiotical', 'idiotically', 'idioticalness', 'idioticon', 'idiotish', 'idiotism', 'idiotize', 'idiotropian', 'idiotry', 'idiotype', 'idiotypic'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment