Python将字符串数组转为数字数组

2019-11-11
#Python

关键代码:

b = list(map(int, a))

a为字符串数组;b为数字数组。