On Mon, Mar 7, 2016 at 3:51 PM, Fillmore <fillmore_rem...@hotmail.com> wrote:
>
> learning Python from Perl here. Want to do things as Pythonicly as possible.
>
> I am reading a TSV, but need to skip the first 5 lines. The following works,
> but wonder if there's a more pythonc way to do things. Thanks

I'd probably use itertools.islice.

from itertools import islice
for line in isiice(pfile, 5, None):
    allVals = line.strip().split("\t")
    print(allVals)
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to