算法图解 4.1

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编辑  收藏  举报

导航