Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
Is the question how to generate filenames running from 1.txt. to XX.txt? – esaelPsnoroMoN Sep 13 '12 at 13:06
Thank you all who answers my question. I've started learning python couple of days ago. May be my question is silly. Please don't give me negative votes. Otherwise my endeavour to learn python through this site will be finished. Thanks! – user972072 Sep 13 '12 at 13:48
please accept one answer – Xavier Combelle Sep 13 '12 at 17:26

closed as not a real question by Wooble, Pent Ploompuu, Andrew, ЯegDwight, user97693321 Sep 14 '12 at 3:01

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 4 down vote accepted

You can easily construct a string with an integer in it:

>>> '{0}.txt'.format(1)
'1.txt'

Do that in a loop:

for i in range(50):
    data = loadtxt('{0}.txt'.format(i + 1), float)

and Bob's your uncle.

share|improve this answer

Quite easy:

for i in range(1,51):
   data = loadtxt('{0}.txt'.format(i),float)
   #process data here.

Old-school string interpolation will work too if you prefer c-style string formatting:

datafile = '%d.txt' % (i)
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.