Read A File Line by LIne
6
Reads a file line by line using Python in 3 lines
###
Description: Read a file line by line
URL: http://the.taoofmac.com/static/grimoire.html
Author:Unknown
License:Creative Commons License
###
import fileinput
for line in fileinput.input("/tmp/filename"):
do_something(line)






for line in file("/tmp/filename"):
do_something(line)