gpt4 book ai didi

python - 字符串在python中拆分为单独的字符串

转载 作者:行者123 更新时间:2023-11-28 19:35:12 25 4
gpt4 key购买 nike

我想使用 python 将 "Onehundredthousand" 拆分为 "one" "hundred" "thousand" .我该怎么做?

最佳答案

您可以使用字符串的 partition 方法将其拆分为 3 部分(左侧部分、分隔符、右侧部分):

"onehundredthousand".partition("hundred")
# output: ('one', 'hundred', 'thousand')

关于python - 字符串在python中拆分为单独的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36786331/

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