gpt4 book ai didi

python - 将字典和一些常量压缩到元组列表中

转载 作者:太空宇宙 更新时间:2023-11-04 07:49:45 25 4
gpt4 key购买 nike

我有一本像这样的字典

d = {1:2, 3:4}

和一些常量a = "foo"& b = "bar"我想创建一个元组列表,例如

[(1,2, "foo", "bar"), (3, 4, "foo", "bar")]

是否有类似 zip/pythonic 的方式来做到这一点?

最佳答案

您可以使用 + 运算符连接元组,就像列表一样:

>>> [i + ("foo", "bar") for i in d.items()]
[(1, 2, 'foo', 'bar'), (3, 4, 'foo', 'bar')]

关于python - 将字典和一些常量压缩到元组列表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56693123/

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