return_function.py 259 字节
Newer Older
唐僧打怪兽's avatar
唐僧打怪兽 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
# github:https://github.com/tangthis
def lazy_sum(*args):
    def sum():
        ax = 0
        for n in args:
            ax = ax + n
        return ax
    return sum

f = lazy_sum(1,3,5,7,9)
print(f)
print(f())