Map函数-将list中的string转换为int

python3

a = ['1', '2', '3']
b = list(map(int, a))
print(b)
[1, 2, 3]
posted @ 2021-07-21 16:26  小Aer  阅读(7)  评论(0编辑  收藏  举报  来源