I am using below code and it works fine.
def indicators(a,b):
netsum = []
for a1 in a:
for b1 in b:
netsum.append(a1 + b1)
return netsum
a = [1,2]
b = [3,5]
[print(i) for i in indicators(a,b)]
And, it just prints results as below:
4
6
5
7
What I would like to have is something like below:
a=1,b=3,4
a=1,b=5,6
a=2,b=3,5
a=2,b=5,7
How can I do this? Simply, I want to print indicators value besides result.