gpt4 book ai didi

python - 将字符串转换为单词数组 - Python

转载 作者:行者123 更新时间:2023-12-01 04:22:44 25 4
gpt4 key购买 nike

我想在Python中创建一个函数,其中输入将是字符串并将其输入到要返回的数组中。

例如:

Input: "The dog is red"  
Output: "The", "dog", "is", "red"

我相信该算法应该有效,但没有返回任何内容。据我所知,if 语句没有检测到空格(“)。

代码如下:

string = input("Input here:")
def token(string):
start = 0
i = 0
token_list = []
for x in range(0, len(string)):
if " " == string[i:i+1]:
token_list = token_list + string[start:i+1]
print string[start:i+1]
start = i + 1
i += 1
return token_list

最佳答案

您可以简单地拆分字符串。

result=input.split(" ")

string = raw_input("Input here:")
def token(string):
start = 0
i = 0
token_list = []
for x in range(0, len(string)):
if " " == string[i:i+1][0]:
token_list.append(string[start:i+1])
#print string[start:i+1]
start = i + 1
i += 1
token_list.append(string[start:i+1])
return token_list

print token(string)

关于python - 将字符串转换为单词数组 - Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33513901/

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