gpt4 book ai didi

python - 如何制作一个返回列表中元素数量的计数函数

转载 作者:太空宇宙 更新时间:2023-11-04 09:40:18 25 4
gpt4 key购买 nike

我正在尝试创建一个函数来计算列表中的元素,为此我正在使用 Python。该程序应该接受像 [a, a, a, b, b, c, c, c, c] 这样的列表并返回一个值 [3, 2, 4] 但我遇到了麻烦。我该怎么办?

最佳答案

如果给定 ['a', 'a', 'a', 'b', 'b', 'a'] 你想要 [3, 2, 1] :

import itertools
result = [len(list(iterable)) for _, iterable in itertools.groupby(my_list)]

关于python - 如何制作一个返回列表中元素数量的计数函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51981068/

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