是否可以从 Counter() Python 中获取二进制计数

Posted

技术标签:

【中文标题】是否可以从 Counter() Python 中获取二进制计数【英文标题】:Is it possible to get binary count from Counter() Python 【发布时间】:2021-03-20 21:03:43 【问题描述】:

使用Counter(),我想对列表中的变量进行二进制计数。因此,我不想获取每个变量的计数,而是希望有一个 Counter() 变量,其中所有值都是一个。

所以对于给定的列表:

data = [1,2,3,4,5,62,3,4,5,1]

我希望输出是:

Counter(1: 1, 2: 1, 3: 1, 4: 1, 5: 1, 62: 1)

代替:

Counter(1: 2, 2: 1, 3: 2, 4: 2, 5: 2, 62: 1)

我知道我可以遍历计数器:

binary_count = x: 1 for x in Counter(data)

但是,这确实需要遍历字典一次,对我来说似乎没有必要。

【问题讨论】:

【参考方案1】:

这不是 Counter 的用途,因此无论您做什么都需要修改输出。

为什么不直接使用Counter 开头呢?这对于普通的dict 来说应该是微不足道的。

哎呀,你甚至可以只使用dict.fromkeys,所以:

>>> data = [1,2,3,4,5,62,3,4,5,1]
>>> dict.fromkeys(data, 1)
1: 1, 2: 1, 3: 1, 4: 1, 5: 1, 62: 1

【讨论】:

谢谢,我不知道这个dict 选项 @Emil 如果值不重要,您甚至可以考虑使用set,这类似于没有值的字典。

以上是关于是否可以从 Counter() Python 中获取二进制计数的主要内容,如果未能解决你的问题,请参考以下文章

python -- Counter 类

python -- Counter 类

Python中Counter统计数据输出具体办法

利用Python的 counter内置函数,统计文本中的单词数量

collections 模块(namedtuple, deque, Counter )

python Counter()用法