简体   繁体   中英

SyntaxError: unexpected EOF while parsing…for python 3.4 and nltk

I am getting a parsing error when I use the following code in Jupyter using python 3.4

import nltk
from nltk.corpus import state_union
from nltk.tokenize import PunktSentenceTokenizer

train_text = state_union.raw("2005-GWBush.txt")
sample_text = state_union.raw("2006-GWBush.txt")

custom_sent_tokenizer = PunktSentenceTokenizer(train_text)

tokenized = custom_sent_tokenizer.tokenize(sample_text)

def process_content():
    try:
        for i in tokenized:
            words = nltk.word_tokenize(i)
            tagged = nltk.pos_tag(words)

            chunkGram = r"""Chunk: {<RB.?>*<VB.?>*<NNP><NN>?}"""

            chunkParser = nltk.RegexpParser(chunkGram)
            chunked = chunkParser.parse(tagged)

            print(chunked)

I am getting the following error:

 File "<ipython-input-12-a049462ffecb>", line 26

    ^
SyntaxError: unexpected EOF while parsing

Please advise on how I can solve this parsing error

Python is looking for the rest of the compound try: statement , eg a finally: or except: block.

As you didn't provide one, Python complains about this. With no other blocks at a lower indentation level, it only knew for certain the rest was missing when the parser reached the end of the file. Because the parser was expecting to find another part of the statement, finding an EOF ( end of file ) instead is unexpected.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM