gpt4 book ai didi

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

转载 作者:IT老高 更新时间:2023-10-28 20:34:36 26 4
gpt4 key购买 nike

如何转换

[(1,), (2,), (3,)]

[1, 2, 3]

最佳答案

使用简单的 list comprehension :

e = [(1,), (2,), (3,)]
[i[0] for i in e]

会给你:

[1, 2, 3]

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

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