我试图将我的搭配结果放入变量中。
我能够做到这一点
print(corpus.collocations())
并在控制台上获取输出...
但是当我做的时候
my_results = corpus.collocations()
print(type(corpus.collocations()))
我得到输出为
<class 'NoneType'>
答案 0 :(得分:0)
使用collocation_list()代替collocations()。
您的情况-
myresults = corpus.collocations_list()
myresults有一个元组列表。元组由所有搭配的连续单词组成