3

我正在尝试计算模块中使用most_common的可迭代元素中元素的出现次数。collections

>>> names = ['Ash', 'ash', 'Aish', 'aish', 'Juicy', 'juicy']
>>> Counter(names).most_common(3)
[('Juicy', 1), ('juicy', 1), ('ash', 1)]

但我期待的是,

[('juicy', 2), ('ash', 2), ('aish', 2)]

是否有“pythonic”方式/技巧来合并“忽略大小写”功能,以便我们获得所需的输出。

4

1 回答 1

10

如何将其映射到str.lower

>>> Counter(map(str.lower, names)).most_common(3)
[('juicy', 2), ('aish', 2), ('ash', 2)]
于 2016-02-03T17:59:37.150 回答