Python 将数字字符串数组转为数字数组的最快方法

a = ['12','34','666']
staId = np.array(a).astype(int)

结果:
Python 将数字字符串数组转为数字数组的最快方法_第1张图片

你可能感兴趣的:(笔记,python)