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
import random | |
import string | |
import pylab | |
WORDLIST_FILENAME = "words.txt" | |
def loadWords(): | |
print "Loading word list from file..." | |
# inFile: file | |
inFile = open(WORDLIST_FILENAME, 'r', 0) |
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
import random | |
import string | |
import pylab | |
WORDLIST_FILENAME = "words.txt" | |
def loadWords(): | |
print "Loading word list from file..." | |
# inFile: file | |
inFile = open(WORDLIST_FILENAME, 'r', 0) |
NewerOlder