在Python中,如何将一个字符串数组转换成整型数组

https://blog.csdn.net/xiangchengguan/article/details/78987041

 

arr = ['22','44','66','88']
arr = list(map(int,arr))
print(arr)

#[22, 44, 66, 88]

 

 

posted on 2019-07-08 20:55  若流芳千古  阅读(28991)  评论(0编辑  收藏  举报

导航