gpt4 book ai didi

python - 如何将列表转换为元组列表?

转载 作者:IT老高 更新时间:2023-10-28 20:38:40 24 4
gpt4 key购买 nike

我是 Python 新手,需要将列表转换为字典。我知道我们可以将元组列表转换为字典。

这是输入列表:

L = [1,term1, 3, term2, x, term3,... z, termN]

我想将此列表转换为元组列表(或直接转换为字典),如下所示:

[(1, term1), (3, term2), (x, term3), ...(z, termN)]

我们如何在 Python 中轻松做到这一点?

最佳答案

>>> L = [1, "term1", 3, "term2", 4, "term3", 5, "termN"]
# Create an iterator
>>> it = iter(L)
# zip the iterator with itself
>>> zip(it, it)
[(1, 'term1'), (3, 'term2'), (4, 'term3'), (5, 'termN')]

您想一次将三个项目分组吗?

>>> zip(it, it, it)

您想一次将 N 个项目分组吗?

# Create N copies of the same iterator
it = [iter(L)] * N
# Unpack the copies of the iterator, and pass them as parameters to zip
>>> zip(*it)

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

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