Posts by Luis Eduardo Cordeiro Salarini • 1 point
1 post
-
-1
votes1
answer38
viewsA: I have a question about how I can add each item of 2 lists and play the results of the sum to a third in python
You want to add the elements of the two lists and put the result in a third or you want to join the elements of the two lists in a third without repeating? Case 1 (sum): x=[1,3,4] y=[1,2,3] z=[] for…