So I have three lists:
['this', 'is', 'the', 'first', 'list']
[1, 2, 3, 4, 5]
[0.01, 0.2, 0.3, 0.04, 0.05]
Is there a way that would allow me to print the values in these lists in order by index?
e.g.
this, 1, 0.01 (all items at list[0])
is, 2, 0.2 (all items at list[1])
the, 3, 0.3 (all items at list[2])
first, 4, 0.04 (all items at list[3])
list, 5, 0.05 (all items at list[4])
The number of items in each list varies each time the script is run, but they always end up with the same number of values in the end. So, one time, the script could create three arrays with 30 items, another time, it could create only 15 values in each, etc.