def test_func(compute):
result = compute(66,711)
print(f"compute 类型={compute}")
print(f"计算结果:{result}")
def sum(a,b):
return a + b
test_func(sum)
匿名函数
def test_func(compute):
result = compute(66,711)
print(f"compute 类型={compute}")
print(f"计算结果:{result}")
def sum(a,b):
return a + b
test_func(sum)
test_func(lambda x,y: x * y)
test_func(lambda x,y: x / y)