gpt4 book ai didi

python - 嵌套列表和 count()

转载 作者:IT老高 更新时间:2023-10-28 20:56:29 25 4
gpt4 key购买 nike

我想获取 x 在嵌套列表中出现的次数。

如果列表是:

list = [1, 2, 1, 1, 4]
list.count(1)
>>3

没关系。但如果列表是:

list = [[1, 2, 3],[1, 1, 1]]

如何获取 1 出现的次数?在这种情况下,4.

最佳答案

>>> L = [[1, 2, 3], [1, 1, 1]]
>>> sum(x.count(1) for x in L)
4

关于python - 嵌套列表和 count(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5828123/

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