gpt4 book ai didi

python - 在没有 split() 的情况下在 Python 中拆分字符串

转载 作者:行者123 更新时间:2023-12-05 08:14:41 24 4
gpt4 key购买 nike

在不使用 split() 方法的情况下,还有哪些拆分字符串的其他方法?例如,如果不使用 split() 方法,如何将 ['This is a Sentence'] 拆分为 ['This', 'is', 'a', 'Sentence']?

最佳答案

sentence = 'This is a sentence'
split_value = []
tmp = ''
for c in sentence:
if c == ' ':
split_value.append(tmp)
tmp = ''
else:
tmp += c
if tmp:
split_value.append(tmp)

关于python - 在没有 split() 的情况下在 Python 中拆分字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32877531/

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