I would like to create in Python multiple arrays whose names depend on a variable j, like this:
for j in range(30):
x_j = np.loadtxt(f'Fid{j}.txt','r', unpack = True)
and the result would be to create 30 arrays x0, x1 .... x29. (Of course this code won't work).
I cannot make a matrix because each of this txt files has a different length, and I don't want to fill them with zeros because it would change a lot.
Do you have some ideas?