I have now:
list1 = [1, 2, 3] list2 = [4, 5, 6]
I wish to have:
[1, 2, 3] + + +
[list1[i] + list2[i] for i in range(len(list1))]