gpt4 book ai didi

python - 从字符串列表中提取数字 - python

转载 作者:太空宇宙 更新时间:2023-11-04 09:15:40 31 4
gpt4 key购买 nike

如果我有一个像这样的列表 [ [100], [500], [300] ],在 python 中从中提取数字的最佳方法是什么?

result = [ 100, 500, 300 ]

最佳答案

x = [ [100] , [500] , [300] ]
y = [ i[0] for i in x]

#or
from itertools import chain
y = list(chain.from_iterable(x))

关于python - 从字符串列表中提取数字 - python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9712488/

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