原题:
原题解答:
#!/usr/bin/python
#str = input()
"""
def printStr(j):
if str:
s = printStr(j)
s = j[-1]
j = j[:-1]
else :
s = None
return printStr(j)
print(printStr(str))
"""
def output(s,l):
if l == 0 :
return
print(s[l-1])
output(s,l-1)
s = input("please input the str:\n")
l = len(s)
output(s,l)
输出结果:
————————(我是分割线)————————
参考:
1. RUNOOB.COM:https://www.runoob.com/python/python-exercise-example27.html
备注:
初次编辑时间:2019年10月4日11:01:46
环境:Windows 7 / Python 3.7.2
手机扫一扫
移动阅读更方便
你可能感兴趣的文章