s1 = pd.Series(['2', '4', '6', '8', '10'])
s2 = pd.Series(['1','3','5','7','9'])
s1+s2
0 21
1 43
2 65
3 87
4 109
As you observe what I get is a " concat
" of the values, with their respective index and what I need is the sum of them
THANKS TO WHO CAN HELP ME.