Simply use zip and list comprehension.
z = [a+b for a,b in zip(x,y)]
solved How to add integers from one list to another in ascending order? [closed]
Simply use zip and list comprehension.
z = [a+b for a,b in zip(x,y)]
solved How to add integers from one list to another in ascending order? [closed]