gpt4 book ai didi

python - 从列中删除多余的字符或值

转载 作者:行者123 更新时间:2023-12-05 09:05:30 25 4
gpt4 key购买 nike

如何删除“/”和“/”之后的值,即 25?

示例:

   score
10
24
19
20/25
18/25
16/25

输出:

score
10
24
19
20
18
16

最佳答案

你可以使用 df.replace在这里发挥作用。

df['score'] = df['score'].replace('/.*','',regex=True)

df 会变成这样:

    score
0 10
1 24
2 19
3 20
4 18
5 16

关于python - 从列中删除多余的字符或值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67177326/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com