NLTK使用中NameError: name 'FreqDist' is not defined问题解决

在使用NLTK学习自然语言处理时,按照《Python自然语言处理》的代码进行频率分布统计,原代码如下:

fdist1 = FreqDist(text1)
但是使用时报错如下:

Traceback (most recent call last):
  File "", line 1, in
    fdist1 = FreqDist(text1)
NameError: name 'FreqDist' is not defined


书上给的解决方案是输入

from nltk.book import *

然而并没有什么卵用。。错误依旧

后来查到FreqDist在nltk.probability类下,于是干脆导入所有nltk包:

from nltk import *
问题就解决啦~~

>>> from nltk import *
>>> fdist1 = FreqDist(text1)
>>> fdist1
FreqDist({u',': 18713, u'the': 13721, u'.': 6862, u'of': 6536, u'and': 6024, u'a': 4569, u'to': 4542, u';': 4072, u'in': 3916, u'that': 2982, ...})









你可能感兴趣的:(NLTK)