gpt4 book ai didi

python - 将元组转换为列表

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

我正在尝试将此元组转换为列表,但是当我运行此代码时:

mytuple=('7578',), ('6052',), ('8976',), ('9946',)
List=[]
for i in mytuple:
Start,Mid,End = map(str, mytuple.split("'"))
List.append(Mid)
print(List)

我收到此错误:
AttributeError: 'tuple' object has no attribute 'split'

输出应该是:
[7578, 6052, 8976, 9946]

最佳答案

这就是你要找的

mytuple = (('7578',), ('6052',), ('8976',), ('9946',))
result = [int(x) for x, in mytuple]
print(result)

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

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