File readline() : File Read « File « Python






File readline()

File readline()
f = open(r'somefile.txt')
for i in range(3):
         print str(i) + ': ' + f.readline(),

f.close()
           
       








Related examples in the same category

1.Open a file and read char by char
2.File read(n)
3.File read() Demo
4.File readlines
5.Looping Over Characters with read
6.Reading Everything: read the whole file in one go
7.Iterating Over Lines with readlines
8.Loop through a file