Other articles


  1. Get a list of all English words in python

    The nltk library for python contains a lot of useful data in addition to it's functions. One convient data set is a list of all english words, accessible like so:

    from nltk.corpus import words
    word_list = words.words()
    # prints 236736
    print len(word_list)
    

    You will probably first have to download …

    ...read more

    There are comments.

Page 1 / 1

Links

Social