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

How do I read every line of a file in Python and store each line as an element in an array?

I want to read the file line by line and each line is appended to the end of the array. I could not find how to do this anywhere and I couldn't find how to create an array of strings in Python.

share|improve this question

4 Answers

with open(fname) as f:
    content = f.readlines()

I'm guessing that you meant list and not array.

share|improve this answer
In this case, which array contains the lines? – Anderson Green 2 days ago
Content is the list that contains the read lines. – Sammy 33 mins ago

See Input and Ouput:

f = open('filename')
lines = f.readlines()
f.close()

or with stripping the newline character:

lines = [line.strip() for line in open('filename')]
share|improve this answer
3  
if you only want to discard the newline: lines = (line.rstrip('\n') for line in open(filename)) – Janus Troelsen Oct 11 '12 at 10:14
Thank you, the example with the stripped newline character is excellent! – dotancohen yesterday

This is more explicit than necessary, but does what you want.

ins = open( "file.txt", "r" )
array = []
for line in ins:
    array.append( line )
share|improve this answer
thanks it worked – Julie Raswick Jul 18 '10 at 22:29
12  
You want to be sure to call ins.close() if you use this method – aaronasterling Jul 19 '10 at 0:09
@aaronasterling what happens when you don't call ins.close()? – wrongusername Nov 27 '11 at 0:35
5  
@wrongusername the file stays open and consumes resources. It won't be automatically garbage collected until ins goes out of scope. – aaronasterling Nov 30 '11 at 20:40

This will yield an "array" of lines from the file.

lines = tuple(open(filename, 'r'))
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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