Discuss / Python / 第十四天打卡

第十四天打卡

Topic source

def add(x, y, f):

    return f(x) + f(y)

print(add(-5, 6, abs))


  • 1

Reply