I'm a complete beginner in python, and my problem is that i have 4 arrays, with x items:
persons_id = [ 78694, 51203, ... ]
dates = [ '20072017', '19072017', ... ]
codes = [ 1500, 0606, ... ]
ranges = [ 70, 60, ... ]
What i'm trying to do is ( in a loop ) to produce that kind of output:
reporting = numpy.array([persons_id[0],
dates[0],
codes[0],
ranges[0]],
[persons_id[1],
dates[1],
codes[1],
ranges[1]],
[...])
Thank you in advance