gpt4 book ai didi

python - 保留出现 N 次或更多次的字符串

转载 作者:行者123 更新时间:2023-11-28 20:42:22 24 4
gpt4 key购买 nike

我有一个列表是

mylist = ['a', 'a', 'a', 'b', 'b', 'c', 'c', 'd']

我使用了这个列表中集合中的 Counter 来得到结果:

from collection import Counter
counts = Counter(mylist)

#Counter({'a': 3, 'c': 2, 'b': 2, 'd': 1})

现在我想对其进行子集化,以便我拥有出现一定次数的所有元素,例如:2 次或更多次 - 因此输出如下所示:

['a', 'b', 'c']

这看起来应该是一项简单的任务 - 但到目前为止我还没有找到任何对我有帮助的东西。

谁能推荐个地方看看?如果我采取了错误的方法,我也不喜欢使用 Counter。我应该注意我是 python 的新手,所以如果这是微不足道的,我深表歉意。

最佳答案

[s for s, c in counts.iteritems() if c >= 2]
# => ['a', 'c', 'b']

关于python - 保留出现 N 次或更多次的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30837335/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com