小练习---反向打印字符串
Posted monsterhy123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小练习---反向打印字符串相关的知识,希望对你有一定的参考价值。
- 利用递归函数调用方式,将所输入的5个字符,以相反顺序打印出来。
1 def output(s,l): 2 if l==0: 3 return 4 print(s[l-1]) 5 output(s,l-1) 6 s = input(‘Input a string:‘) 7 l = len(s) 8 output(s,l)
1 Input a string:abcdef 2 f 3 e 4 d 5 c 6 b 7 a
以上是关于小练习---反向打印字符串的主要内容,如果未能解决你的问题,请参考以下文章