什么是counter_object.get?什么是关键对象,我们如何使用它们?

时间:2019-07-07 13:48:53

标签: python python-3.x counter

我正在使用Collections.Counter标记单词。我想使用排序功能对高频到高索引而低频到低索引的单词进行排序。

我见过sorted(counter, key=counter.get),但是不确定counter.get的工作方式:我无法调用它,也无法在for循环中迭代它;是生成器对象吗?

Python documentation似乎没有提到此方法

text = "the quick brown fox jumps over the lazy dog"
counter = Counter(text)
tokenized = sorted(counter,key=counter.get)

如果我输入counter.get,则会得到以下输出:

<function Counter.keys>

0 个答案:

没有答案