gpt4 book ai didi

python - 如何在 Python 中格式化九位数字的字符串?

转载 作者:太空宇宙 更新时间:2023-11-04 07:05:30 25 4
gpt4 key购买 nike

我有一系列字符串,例如:"024764108""002231531""005231329",它们正好是 9 位数字.我想将 - 添加到每组 3 位数字。我想要的结果如下:“024-764-108”“002-231-531”“005-231-329”。我如何向 python 解释我的想法?

最佳答案

这是一个动态的解决方案:

In [41]: df
Out[41]:
num
0 024764108
1 002231531
2 005231329
3 012345678901234

In [42]: df.num.str.extractall(r'(\d{3})').groupby(level=0)[0].apply('-'.join)
Out[42]:
0 024-764-108
1 002-231-531
2 005-231-329
3 012-345-678-901-234
Name: 0, dtype: object

关于python - 如何在 Python 中格式化九位数字的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50282532/

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