Python 練習(xí)實(shí)例27

Python 100例 Python 100例

題目:利用遞歸函數(shù)調(diào)用方式,將所輸入的5個(gè)字符,以相反順序打印出來(lái)。

程序分析:無(wú)。

程序源代碼:

#!/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)

以上實(shí)例輸出結(jié)果為:

Input a string:abcde
e
d
c
b
a

Python 100例 Python 100例