gpt4 book ai didi

python - 从两个列表中获取对应的元素

转载 作者:行者123 更新时间:2023-12-02 02:16:34 25 4
gpt4 key购买 nike

我有两个列表 test1 和 test2。如何将前两个索引拆分为单独的列表

 test1 = [a,1,x]
test2 = [b,2,y]

最终列表应该是这样的。

 first_alpha = [a,b]
number = [1,2]
last_alpha = [x,y]

最佳答案

压缩列表,然后将它们解压到目标变量中。

first_alpha, number, last_alpha = zip(test1, test2)
>>> first_alpha, number, last_alpha
(('a', 'b'), (1, 2), ('x', 'y'))

关于python - 从两个列表中获取对应的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58907759/

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