Blog

What is the output of the code below?

day = [“Monday”, “Sunday”, “Friday”]
func = lambda x, y : f”I love {x}”
list = list(map(func, day))