python – pandas保持数字部分

我有一组数据,如:

        0       1 
0  type 1  type 2
1  type 3  type 4

我怎样才能把它转移到:

   0  1
0  1  2
1  3  4

使用应用程序转换函数的perfer

解决方法:

>>> df.apply(lambda x: x.str.replace('type ','').astype(int))
   0  1
0  1  2
1  3  4

如果不需要转换为int,请删除.astype(int)

上一篇:c++模板函数特化问题


下一篇:关于Byte(1) 与int (1) 比较原理