gpt4 book ai didi

python - 更多 "pythonic"将列表列表扩展为一个连接列表的方法

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

<分区>

这是 python 语法相关的问题...是否有更优雅更 pythonic 的方式来做到这一点:

>>> test = [[1,2], [3,4,5], [1,2,3,4,5,6]]
>>> result = []
>>> for i in test: result += i
>>> result
[1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 6]

将多个列表(存储在另一个列表中)加入一个长列表?

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