I am new to python. Using it with grasshopper. I have 5 lists, each actually with 8760 items for which i have found max values at each index "but I also need to know which list the value came from at any given index."
I would put a simple example to explain myself better. For 2 lists A = [5,10,15,20,25] B = [4,9,16,19,26]
Max value per index = [5,10,16,20,26]
What I want is something like Max value per index = [5(A), 10(A), 16(B), 20(A), 26(B)]
Or something along the line that can relate. I am not sure whether its possible.
I would really appreciate the help. Thank you.