154k views
5 votes
Write a program that Read first n lines of file

User Mrcrowl
by
7.8k points

1 Answer

6 votes

Answer:

Python 2:

with open("datafile") as myfile:

head = [next(myfile) for x in xrange(N)]

print head

Python 3:

with open("datafile") as myfile:

head = [next(myfile) for x in range(N)]

print(head)

Both Python 2 & 3:

from itertools import islice

with open("datafile") as myfile:

head = list(islice(myfile, N))

print head

User Murray Foxcroft
by
7.2k points