小编Ale*_*xis的帖子

在python中反转句子

谢谢你的所有答案.我知道我的代码错了.

请不要向我提供解决方案,因为我确实有一些,但后来我想了解我的代码不起作用.

我认为这是由于,while x <= -len(split_result):"但我认为逻辑是正确的.我的代码出了什么问题?

O_string = ("Me name is Mr_T")
split_result = O_string.split()
print(split_result)

x=0
list=[]

while x <= -len(split_result):
    list.append(split_result[x-1])
    x = x-1

result=" ".join(list)
print (result)
Run Code Online (Sandbox Code Playgroud)

python indexing loops

1
推荐指数
1
解决办法
8980
查看次数

标签 统计

indexing ×1

loops ×1

python ×1