我不应该得到这个错误。这以前有用过,任何教程都以相同的方式进行介绍并且它有效。请帮忙。

import nltk
from nltk.book import *

text3.generate()
AttributeError                            Traceback (most recent call last)
<ipython-input-2-e0816ba18b61> in <module>()
----> 1 text3.generate()

AttributeError: 'Text' object has no attribute 'generate'

打印 sys.version #我的 python 版本
2.7.8 | python 2.0.1 (x86_64)| (默认,2014 年 8 月 21 日,15:21:46)
[GCC 4.2.1 (Apple Inc. build 5577)]

最佳答案

first online chapter of the NLTK 书中的第四个注释说:

关于Python NLTK : generate() function cannot be used,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27537023/

10-11 17:03