gpt4 book ai didi

python - 获取python列表中的所有项目?

转载 作者:行者123 更新时间:2023-12-03 16:14:19 24 4
gpt4 key购买 nike

获取列表中的项目数非常容易,len(list) ,但说我有一个矩阵,如:[[1,2,3],[1,2,3]]是否有返回 6 的 pythonic 方法?或者我必须迭代。

最佳答案

您可以使用 chain

from itertools import chain
l = [[1,2,3],[1,2,3]]
len(list(chain(*l))) # give you 6

表达式 list(chain(*l))给你平单: [1, 2, 3, 1, 2, 3]

关于python - 获取python列表中的所有项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52573275/

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