摘要: # coding=utf-8"""题目:利用递归函数调用方式,将所输入的5个字符,以相反顺序打印出来"""charNum = []def getChar(): for i in range(5): x = input("请输入字符") charNum.append(x)def outPut(num, 阅读全文
posted @ 2019-09-25 20:07 雪瞳 阅读(159) 评论(0) 推荐(0) 编辑