Ken Starks <[EMAIL PROTECTED]> writes: > LineList=open(filename,'r').readlines()[1,]
You don't want to do that if the file is very large. Also, you meant [1:] rather than [1,] -- http://mail.python.org/mailman/listinfo/python-list
Ken Starks <[EMAIL PROTECTED]> writes: > LineList=open(filename,'r').readlines()[1,]
You don't want to do that if the file is very large. Also, you meant [1:] rather than [1,] -- http://mail.python.org/mailman/listinfo/python-list