I am using Python 3.5 and I want to assign values to new objects in a loop:
for i in range(10):
vector_N{}.format(i) = np.random.randint(10,20,10)
I am expecting 10 vectors whose names will be vector_N1, vector_N2 and so on assigned the corresponding random values.
I know that I can create empty list as a container and use it to save all this values but I want exactly this names and not to use list indexing.
Is it possible in python?