File Python Tutorial

myFile = open('test.txt')
for eachLine in myFile:
     print eachLine,  
myFile.close()