我正在尝试计算模块中使用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”方式/技巧来合并“忽略大小写”功能,以便我们获得所需的输出。