gpt4 book ai didi

python - 如何将两个列表合并为 python 中的一系列列?

转载 作者:太空狗 更新时间:2023-10-29 18:19:17 24 4
gpt4 key购买 nike

<分区>

假设我有两个列表:

t1 = ["abc","def","ghi"]  
t2 = [1,2,3]

如何使用 python 合并它,以便输出列表为:

t =  [("abc",1),("def",2),("ghi",3)]

我试过的程序是:

t1 = ["abc","def"]  
t2 = [1,2]
t = [ ]
for a in t1:
for b in t2:
t.append((a,b))
print t

输出是:

[('abc', 1), ('abc', 2), ('def', 1), ('def', 2)]

我不想重复输入。

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