Sobes.tech
Middle

# Create a list of three functions, where each function returns its number when called. # The first function should return - 0, the second - 1, the third - 2: funcs = [lambda: i for i in range(3)] print([f() for f in funcs]) # Answer: