File Python Tutorial

#!/usr/bin/env python
fname = raw_input('Enter filename: ')
print
try:
    fobj = open(fname, 'r')
except IOError, e:
    print "*** file open error:", e
else:
    for eachLine in fobj:
        print eachLine,
    fobj.close()