python之文件读取一行一行的方法

如下所示:

f=file('a.txt')
for eachline in f:
 print eachline

相关推荐