Python-从列中的字符串中删除不需要的部分

我正在寻找一种有效的方法来从DataFrame列的字符串中删除不需要的部分。

数据如下:

    time    result

1 09:00 +52A

2 10:00 +62B

3 11:00 +44a

4 12:00 +30b

5 13:00 -110a

我需要将这些数据修剪为:

    time    result

1 09:00 52

2 10:00 62

3 11:00 44

4 12:00 30

5 13:00 110

我试过了.str.lstrip(‘+-‘)。str.rstrip(‘aAbBcC’),但出现错误:

TypeError: wrapper() takes exactly 1 argument (2 given)

任何指针将不胜感激!

回答:

data['result'] = data['result'].map(lambda x: x.lstrip('+-').rstrip('aAbBcC'))

以上是 Python-从列中的字符串中删除不需要的部分 的全部内容, 来源链接: utcz.com/qa/427745.html

回到顶部