Posts by Sander Mota • 21 points
1 post
-
2
votes1
answer52
viewsQ: In a list list, how to sum each item of each list with the item of its respective position?
For ex my list is: x = [[1,2,3,4,5],[6,7,8,9]] How can I create a new list so that its elements are the sums of the corresponding elements in each list? y = [1+6,2+7,3+8,4+9,5+0]…