在python,如何将Series中的数据转换成int格式
使用astype方法,如:tmp=tmp.astype('int')
两个办法,一个是astype一个是mapmap(int, 你的列表)或者map(lambda x: int(x[某一列]), 你的列表)