I'm using a for loop to read a file, but I only want to read specific lines, say line #26 and #30. Is there any built-in feature to achieve this?
Thanks
|
|
If the file to read is big, and you don't want to read the whole file in memory at once:
Note that |
|||||||||||||||
|
|
The quick answer:
or:
There is a more elegant solution for extracting many lines: linecache (courtesy of "python: how to jump to a particular line in a huge text file?", a previous stackoverflow.com question). Quoting the python documentation linked above:
Change the If the file might be very large, and cause problems when read into memory, it might be a good idea to take @Alok's advice and use enumerate(). To Conclude:
|
|||||||||||
|
|
A fast and compact approach could be:
this accepts any open file-like object
which is basically only good for looping upon -- note that the only difference comes from using rounded rather than square parentheses in the Further note that despite the mention of "lines" and "file" these functions are much, much more general -- they'll work on any iterable, be it an open file or any other, returning a list (or generator) of items based on their progressive item-numbers. So, I'd suggest using more appropriately general names;-). |
|||
|
|
if you want line 7
line = open("file.txt", "r").readlines()[7]
|
|||||
|
|
How about this:
|
|||
|
|
If you don't mind importing then fileinput does exactly what you need (this is you can read the line number of the current line) |
|||
|
|
|
|||
|
|
File objects have a .readlines() method which will give you a list of the contents of the file, one line per list item. After that, you can just use normal list slicing techniques. |
|||
|
|
|
You can do a seek() call which positions your read head to a specified byte within the file. This won't help you unless you know exactly how many bytes (characters) are written in the file before the line you want to read. Perhaps your file is strictly formatted (each line is X number of bytes?) or, you could count the number of characters yourself (remember to include invisible characters like line breaks) if you really want the speed boost. Otherwise, you do have to read every line prior to the line you desire, as per one of the many solutions already proposed here. |
|||
|
|
|
I prefer this approach because it's more general-purpose, i.e. you can use it on a file, on the result of
|
|||
|
|
|
|||||||||
|
|
@OP, you can use enumerate
|
|||
|
|
|
Here's my little 2 cents, for what it's worth ;)
|
|||
|
|
|
import linecache I hope this is quick and easy :) |
||||
|
|