关于open()返回值及打印输出的问题

文件file.txt的内容为

i'm your big  brother
he is a man

以下几个代码片段的运行内容分别为:

1)

file=open('file.txt','r')
print(file)
# <_io.TextIOWrapper name='file.txt' mode='r' encoding='cp936'> 
# 输出内容包括文件名,打开模式,编码方法

2)

file=open('file.txt','r')
for line in file:
    print(line)
'''i'm your big  brother

he is a man
输出内容正确,但多了一行空白?原因未知
'''

3)

file=open('file.txt','r')
line=file.read()
print(line)
'''i'm your big  brother
he is a man
输出内容正确'''


你可能感兴趣的:(关于open()返回值及打印输出的问题)