def total(arr): if len(arr) == 1: return arr[0] return arr.pop() + total(arr) _ = [1,2,3,4,5,7] print(total(_))
posted on 2024-07-03 16:16 阿斯利康闪电 阅读(1) 评论(0) 编辑 收藏 举报