gpt4 book ai didi

python - 如何将元组数据提取为单元素格式

转载 作者:行者123 更新时间:2023-11-28 19:32:12 25 4
gpt4 key购买 nike

我从下面得到了很好的结果,但是我如何从元组中提取数据呢?换句话说,我该如何清理数据?

这里是数据库的数据,我用完了。

>>> policy_id = ((2309L,), (118L,), (94L,))
>>> for i in policy_id:
print i


(2309L,)
(118L,)
(94L,)

但我想要的结果是:

2309
118
94

最佳答案

policy_id = ((2309L,), (118L,), (94L,))
for i in policy_id:
print i[0]

关于python - 如何将元组数据提取为单元素格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10549672/

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