gpt4 book ai didi

python - 通过一些值 Python 减少列表中每个值的计数

转载 作者:太空宇宙 更新时间:2023-11-03 15:32:58 25 4
gpt4 key购买 nike

我在徘徊,有没有一种方法可以通过将其计数减少某个数字(1,2,3..10 ...)或设置计数除以某个数字来减少列表中每个值的数量。例如:

list = ["one","one","three","three","four","three","four", "four"]

第一种情况的结果(每个值减少 2):

["three", "four"]

第二种情况的结果(除以 2 --> 这很棘手,因为 3/2 是 1.5,但例如将数字四舍五入为 1):

["one", "three", "four"]

最佳答案

这是使用 Counter 的一种方法:

from collections import Counter
from itertools import chain, repeat

l = ["one","one","three","three","four","three","four", "four"]

n = 2
c = Counter(l).items()
list(chain.from_iterable(repeat(k, v-n) for k,v in c))
# ['three', 'four']

对于第二种情况,我们可以用 n=2 进行楼层划分:

list(chain.from_iterable(repeat(k, v//n) for k,v in c))
# ['one', 'three', 'four']

关于python - 通过一些值 Python 减少列表中每个值的计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56906612/

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