要导入NLTK库中的模块,首先需要安装NLTK库。可以通过pip命令安装NLTK库:
pip install nltk
安装完成后,可以在Python脚本中导入NLTK模块。例如,要导入NLTK中的word_tokenize模块,可以这样做:
from nltk.tokenize import word_tokenize
这样就可以在代码中使用NLTK库中的word_tokenize模块了。