I have to open several files, say 50 files named 1.txt, 2.txt, 3.txt, ... so on and have to read them one by one. The way I can read them is
data = loadtxt("1.txt", float)
So that the file name is used as string and I can't use any loop to read them. And it is very tedious to read each files individually. Is there any way to use a loop to read all files? Thanks.