Textstat не работает функции

Я только что нашел ссылку о том, как установить texttat на моем Python простоя, и мне удалось заставить его работать. Тем не менее, когда я импортирую texttat все выглядит нормально, пока я не пытаюсь запустить функцию. Он постоянно говорит мне, что это не определенные функции. Я могу зайти в папку texttat на моем компьютере, посмотреть код и убедиться, что они определены в коде. Что я делаю неправильно?

Python 2.7.8 (default, Jul 13 2014, 17:11:32) 
[GCC 4.2.1 Compatible Apple LLVM 5.1 (clang-503.0.40)] on darwin
Type "copyright", "credits" or "license()" for more information.
>>> import textstat
>>> import nltk
>>> from nltk.book import
SyntaxError: invalid syntax
>>> from nltk.book import*
*** Introductory Examples for the NLTK Book ***
Loading text1, ..., text9 and sent1, ..., sent9
Type the name of the text or sentence to view it.
Type: 'texts()' or 'sents()' to list the materials.
text1: Moby Dick by Herman Melville 1851
text2: Sense and Sensibility by Jane Austen 1811
text3: The Book of Genesis
text4: Inaugural Address Corpus
text5: Chat Corpus
text6: Monty Python and the Holy Grail
text7: Wall Street Journal
text8: Personals Corpus
text9: The Man Who Was Thursday by G . K . Chesterton 1908
>>> flesch_reading_ease(text1)

Traceback (most recent call last):
  File "<pyshell#4>", line 1, in <module>
    flesch_reading_ease(text1)
NameError: name 'flesch_reading_ease' is not defined
>>> 

0 ответов

Другие вопросы по тегам