如何用Python解决反向问题?

问题描述 投票:-1回答:2

此任务条件

我的代码正常工作,但收到失败消息My code is working but I am getting failed message

我为什么出错? 请给我帮助!

python reverse
2个回答
0
投票

您的代码除x.split(" ")部分外几乎都是正确的。如果您想反转给定的字符串,这里是解决方法:

string = "again"

def reverse(x):
  x = list(x)
  x.reverse()
  return "".join(x)

print(reverse(string))

0
投票

为什么不仅仅使用切片来反转字符串?

切片像这样:

text[start:end:step]

要反转字符串,您可以使用-1步骤。

reversed = text[::-1]

print(reversed)

txet desrever a ton si siht
© www.soinside.com 2019 - 2024. All rights reserved.