vote up 3 vote down star

Hi,

I'm trying to open a file and afterwards create a list with each line read from the file.

   i=0
   List=[""]
   for Line in inFile:
      List[i]=Line.split(",")
      i+=1
   print List

But this sample code give me an error because of the i+=1 saying that index out of range. What's my prblem here? How can I write the code in order to increment my list with every new Line in the InFile?

Thanks for the help

flag

42% accept rate

6 Answers

vote up 8 vote down check

Its alot easier than that:

List = open("filename.txt").readlines()

This returns a list of each line in the file.

link|flag
WoooW Just perfect! It worked. Btw imagine that was not a file... But i wnat to creat a dynamic list... How can I append an element on it? like if was an arrayList? ty so much – UcanDoIt Nov 29 '08 at 22:06
The append method will do the trick. For example: xs.append(line) – Eli Courtwright Nov 29 '08 at 23:06
vote up -1 vote down

I am not sure about Python but most languages have push/append function for arrays.

link|flag
vote up 2 vote down
my_list = [line.split(',') for line in open("filename.txt")]
link|flag
I fear jumping into a list comprehension for someone still trying to understand basic python might be a bit large of a step. :) – Dustin Nov 29 '08 at 22:08
I suppose you're right... – orip Nov 30 '08 at 7:43
Dustin is right, however orip offered the most correct answer to the question. – ΤΖΩΤΖΙΟΥ Nov 30 '08 at 8:23
vote up 1 vote down

A file is almost a list of lines. You can trivially use it in a for loop.

myFile= open( "SomeFile.txt", "r" )
for x in myFile:
    print x
myFile.close()

Or, if you want an actual list of lines, simply create a list from the file.

myFile= open( "SomeFile.txt", "r" )
myLines = list( myFile )
myFile.close()
print len(myLines), myLines

You can't do someList[i] to put a new item at the end of a list. You must do someList.append(i).

Also, never start a simple variable name with an uppercase letter. List confuses folks who know Python.

Also, never use a built-in name as a variable. list is an existing data type, and using it as a variable confuses folks who know Python.

link|flag
How can I leanr about python coding standards? Thanks, i didn't know you use varaibable names in lowercase... any special reason for that? Ty – UcanDoIt Nov 29 '08 at 22:09
While you're on conventions, PEP8 also has something to say about spaces inside of parentheses. :) – Dustin Nov 29 '08 at 22:11
See python.org/dev/peps/pep-0008, also see stackoverflow.com/questions/159720/… – S.Lott Nov 29 '08 at 22:12
@Dustin: well aware of space-in-parenthesis recommendation in PEP8. After 3 decades of spaces in ()'s, I'm not going to change. – S.Lott Nov 29 '08 at 22:13
What's wrong with spaces inside parentheses? Who cares? – Federico Ramponi Nov 29 '08 at 22:29
show 2 more comments
vote up 1 vote down

f.readlines() returns a list that contains each line as an item in the list

if you want eachline to be split(",") you can use list comprehensions

[ list.split(",") for line in file ]
link|flag
vote up 1 vote down

Please read PEP8. You're swaying pretty far from python conventions.

If you want a list of lists of each line split by comma, I'd do this:

l = []
for line in in_file:
    l.append(line.split(','))

You'll get a newline on each record. If you don't want that:

l = []
for line in in_file:
    l.append(line.rstrip().split(','))
link|flag
thanks a lot. very helpfull... – UcanDoIt Nov 29 '08 at 22:32

Your Answer

Get an OpenID
or

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