Python学习者。所以请原谅我。我正在关注:http ://docs.python.org/2/tutorial/inputoutput.html#reading-and-writing-files
我想读一个文件;这是我的文件:
# cat test
line1 word1
line2 word2
line3 word3
line4 word4
这是我的代码:
>>> f = open ('test')
>>> for line in f:
... print f
...
<open file 'test', mode 'r' at 0xb7729180>
<open file 'test', mode 'r' at 0xb7729180>
<open file 'test', mode 'r' at 0xb7729180>
<open file 'test', mode 'r' at 0xb7729180>
我如何以及为什么超过输出?我希望它能每行打印每一行。我在这里想念什么。查看上面提到的链接,我的语法似乎还可以,但输出不是
谢谢。