After calculation of few values and got these values and further I need to calculate more but stuck with how do I do that.
[array([59, 24, 9, 3, 1, 0, 0, 0, 0, 0, 0, 0], dtype=int64),
array([118, 48, 19, 7, 3, 1, 0, 0, 0, 0, 0, 0],
dtype=int64),
array([178, 72, 29, 11, 4, 1, 0, 0, 0, 0, 0, 0],
dtype=int64),
array([237, 96, 39, 15, 6, 2, 1, 0, 0, 0, 0, 0],
dtype=int64),
array([296, 120, 49, 19, 8, 3, 1, 0, 0, 0, 0, 0],
dtype=int64),
array([356, 144, 58, 23, 9, 3, 1, 0, 0, 0, 0, 0],
dtype=int64),
array([415, 168, 68, 27, 11, 4, 1, 0, 0, 0, 0, 0],
dtype=int64),
array([474, 193, 78, 31, 12, 5, 2, 0, 0, 0, 0, 0],
dtype=int64),
array([534, 217, 88, 35, 14, 5, 2, 0, 0, 0, 0, 0],
dtype=int64),
array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], dtype=int64),
array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], dtype=int64),
array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], dtype=int64)]
Now I need to apply calculation and get an output as
59
142(got it by 24+118)
235(got it by 9+48+178)
331(got it by 3+19+72+237)
429(got it by 1+7+29+96+296)
...
..
.
I'm expecting the above values as my output.