I have several lists: values1, values2, values3.
Now I want to do some operations in a loop. I was looking for an easy solution without using dictionaries to do something like this:
values1 = []
values2 = []
values3 = []
for i in numpy.arange(1, 3):
    items = values+str(i)
    ...
    ...
Is there a quick an easy way to do this?
Thanks in advance.
 
    