Python Programming/Natural Language Toolkit
Appearance
Natural Language Toolkit | |
PyPi Link | https://pypi.python.org/pypi/nltk |
---|---|
Pip command | pip install nltk |
NLTK is a module that provides many options for literature and word handling.
Downloading
[edit | edit source]The NLTK module does not have anything downloaded. It has a function, download()
to download things. In order to bring up the download gui, run
from nltk import download
download()
You can also put in the specific thing you want to download
from nltk import download
download('words') #this will download the list of about 236736 words.
This page or section is an undeveloped draft or outline. You can help to develop the work, or you can ask for assistance in the project room. |