gpt4 book ai didi

python - 将列表更新为元组

转载 作者:行者123 更新时间:2023-12-01 04:04:20 25 4
gpt4 key购买 nike

我需要在元组列表中设置第一个项目,类似于选择中的第一个选项。我正在尝试下面的代码,但显然不是有效的语法。

有什么干净的方法可以做到这一点吗?

list_tuples = [('0', 'Choose'), (str(interest.id), interest) for interest in interests]

最佳答案

以下应该有效:

list_tuples = [('0', 'Choose')] + [(str(interest.id), interest) for interest in interests]

关于python - 将列表更新为元组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35930304/

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