Python 练习范例 27

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

#!/usr/bin/python
# -*- coding: UTF-8 -*-

def output(s,l):
    if l==0:
       return
    print (s[l-1])
    output(s,l-1)

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

以上 Python 代码输出结果如下

Input a string:abcde
e
d
c
b
a

Python2 100 例

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.