Python / Pandas - 操纵列中的字符串

时间:2017-07-23 23:28:50

标签: python string pandas

我有这个数据框:

index      code
1         432-1
2         424-5
3         098-9
...

我想让它看起来像这样:

index      code
1          4321
2          4245
3          0989
...

我设法使用此代码获取连字符前的前3个数字:

df['code']=df['code'].astype(str).str[:2]

似乎很愚蠢,但我很难尝试以pythonic方式将其与最后一个角色合并。有人可以帮忙吗?

0 个答案:

没有答案