Python 練習(xí)實(shí)例27
python 練習(xí)實(shí)例27
題目:利用遞歸函數(shù)調(diào)用方式,將所輸入的5個(gè)字符,以相反順序打印出來(lái)。
程序分析:無(wú)。
程序源代碼:
實(shí)例(python 2.0+):
#!/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í)例(python 3.0+):
#!/usr/bin/python3 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)
以上實(shí)例輸出結(jié)果為:
input a string:abcde e d c b a