编写一个简短的递归Python函数,接受一个字符串s并输出其反方向。
时间: 2023-05-16 21:07:41 浏览: 178
好的,这是一个简单的递归Python函数,可以接受一个字符串s并输出其反向:
def reverse_string(s):
if len(s) == 0:
return s
else:
return reverse_string(s[1:]) + s[0]
例如,如果输入字符串为“hello”,则输出为“olleh”。
阅读全文