我正在尝试使用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”方式/技巧以合并'ignore-case'功能,以便我们可以获得所需的输出。
答案 0 :(得分:6)
如何将其映射到str.lower
?
>>> Counter(map(str.lower, names)).most_common(3)
[('juicy', 2), ('aish', 2), ('ash', 2)]