python函数递归 字符串反转

4.7 python函数递归 字符串反转

代码:

def fanzhuan(s):
        if len(s)==1:
            s2=s
        else:
            s2=s[-1]+fanzhuan(s[:len(s)-1])
        return s2

s1='132fddeewwea'
s2=fanzhuan(s1)
print("反转前的字符串为:",s1)
print("反转后的字符串为:",s2)

运行结果:
python函数递归 字符串反转_第1张图片

你可能感兴趣的:(python,python)