gpt4 book ai didi

python - 如何将列表合并到元组列表中?

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

实现以下目标的 Pythonic 方法是什么?

# Original lists:

list_a = [1, 2, 3, 4]
list_b = [5, 6, 7, 8]

# List of tuples from 'list_a' and 'list_b':

list_c = [(1,5), (2,6), (3,7), (4,8)]

list_c 的每个成员都是一个元组,其第一个成员来自 list_a,第二个成员来自 list_b

最佳答案

在 Python 2 中:

>>> list_a = [1, 2, 3, 4]
>>> list_b = [5, 6, 7, 8]
>>> zip(list_a, list_b)
[(1, 5), (2, 6), (3, 7), (4, 8)]

在 Python 3 中:

>>> list_a = [1, 2, 3, 4]
>>> list_b = [5, 6, 7, 8]
>>> list(zip(list_a, list_b))
[(1, 5), (2, 6), (3, 7), (4, 8)]

关于python - 如何将列表合并到元组列表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2407398/

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