I need to create several NumPy arrays that the name of it gets from a list. I try but I can not create it. for example, I have this list: k=["one","two","three"] I want to create three arrays that the name of each array equal element of the list. that is mean:
one=np.array()
two=np.array()
three=np.array()
This is my code:
import numpy as np
k=["one","two","three"]
for i in range(0,len(k)):
# print (k[i])
j=str(k[i])+str(i)
print(j)
j=np.array("1")