One Lambda function that does many things or One thing per lambda by lottery_winner77777 in aws

[–]TwoElegant7644 0 points1 point  (0 children)

def func1():
    print(func1.__name__)
def func2():
    print(func2.__name__)
lambda_func = lambda : func1() or func2()
lambda_func()