Loop through a file : File Read « File « Python






Loop through a file

f=open('/tmp/workfile')

for line in f:
      print line,

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 readline()File readline()
5.File readlines
6.Looping Over Characters with read
7.Reading Everything: read the whole file in one go
8.Iterating Over Lines with readlines