gpt4 book ai didi

python - 映射是否可以转换

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:33:52 25 4
gpt4 key购买 nike

我有以下列表:

a = ['1', '2', 'hello']

我想得到

a = [1, 2, 'hello']

我的意思是,尽我所能转换所有整数。

这是我的功能:

def listToInt(l):
casted = []
for e in l:
try:
casted.append(int(e))
except:
casted.append(e)
return casted

但是,我可以使用 map() 函数或类似的东西吗?

最佳答案

当然你可以用 map

def func(i):
try:
i = int(i)
except:
pass
return i
a = ['1', '2', 'hello']
print(list(map(func, a)))

关于python - 映射是否可以转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39602093/

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