#请大神用PY3 解答,谢谢
1 回答
慕田峪2303068
TA贡献1条经验 获得超0个赞
def func(s): try: print(s[-1]) func(s[0:len(s)-1]) except Exception: pass func('12345')
添加回答
举报
0/150
提交
取消