摘要:
#!/usr/bin/python # -*- coding: UTF-8 -*- # 字符串反转操作 lst = [] def output(str, length): if length == 0: return lst lst.append(str[length - 1]) output(str, length - 1) str = inp... 阅读全文
posted @ 2018-12-30 23:02
阿波罗Apollo
阅读(188)
评论(0)
推荐(0)
2018年12月30日