搭配输出到变量

时间:2016-01-06 01:18:10

标签: python nltk

我试图将我的搭配结果放入变量中。

我能够做到这一点

print(corpus.collocations()) 

并在控制台上获取输出...

但是当我做的时候

my_results = corpus.collocations()
print(type(corpus.collocations()))

我得到输出为

<class 'NoneType'>

1 个答案:

答案 0 :(得分:0)

使用collocation_list()代替collocations()。

您的情况-

myresults = corpus.collocations_list()

myresults有一个元组列表。元组由所有搭配的连续单词组成