Python笔记(24)高阶函数

    技术2026-03-09  7

    #!/user/bin/env python # -*- coding:utf-8 -*- # author:berlin # 高阶函数简单的可以理解成函数里面再嵌套函数 def add(a,b,c): return c(a)+c(b) res = add(3,-6,abs) print(res)
    Processed: 0.017, SQL: 9