Python 练习

1. 题目

利用递归函数调用方式,将所输入的 5 个字符,以相反顺序打印出来。

2. 分析

3. 实例

点我看答案
def output(s, l):
    if l == 0:
        return
    print(s[l - 1])
    output(s, l - 1)


s = input('Input a string:')
l = len(s)
output(s, l)

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""