I am a python newbie trying to achieve the following:
I have a list of lists:
lst = [[567,345,234],[253,465,756, 2345],[333,777,111, 555]]
I'll give you another solution, Make your lambda invoke a function.
def multiple_statements(x, y): print('hi') print('there') print(x) print(y) return 1 junky = lambda x, y: multiple_statements(x, y) junky('a', 'b');