Say I have two lists:
a=[1,2,3,4,5]
b=[5,4,3,2,1]
I want to create a third one which will be linear sum of two given:
c[i]==a[i]+b[i]
c==[6,6,6,6,6]
Is it possible to do with 'for' constructor? Like:
c = [aa+bb for aa in a for bb in b]
(which obviously returns not what I want)