concordance für eine Phrase mit NLTK in Python

Ist es möglich, Konkordanz für eine Phrase in NLTK zu erhalten?

import nltk
from nltk.corpus import PlaintextCorpusReader

corpus_loc = "c://temp//text//"
files = ".*\.txt"
read_corpus = PlaintextCorpusReader(corpus_loc, files)
corpus  = nltk.Text(read_corpus.words())
test = nltk.TextCollection(corpus_loc)

corpus.concordance("claim")

zum Beispiel gibt das obige @ zurü

on okay okay okay i can give you the claim number and my information and
 decide on the shop okay okay so the claim number is xxxx - xx - xxxx got

und jetzt, wenn ich es versuchecorpus.concordance("claim number") es funktioniert nicht ... Ich habe den Code, um dies zu tun, indem ich einfach @ benut.partition() -Methode und einige weitere Codierungen auf dem gleichen ... aber ich frage mich, ob es möglich ist, dasselbe mit @ zu tconcordance.

Antworten auf die Frage(6)

Ihre Antwort auf die Frage