编写一个程序,读取hoilday.txt的内容,一次一行

时间:2016-10-01 10:08:54

标签: python-3.5

我必须在python 3.5.2上执行此编码挑战。

到目前为止,这是我的代码:

file = open("holiday text",'r')
contents = file.read
print(contents)
file.close()

1 个答案:

答案 0 :(得分:0)

这应该可以解决问题。请注意,如果文本文件不在与python相同的文件夹中(例如C:/ Python35-32),则应指定整个路径,除非它是针对某些在线挑战的,您只需提供文本文件。

file = open("holiday text.txt",'r')
contents = file.read()
file.close()
print(contents)

另一种方法是使用with语句自动打开/关闭文件,如下所示:

with open("holiday text.txt",'r') as file:
    contents = file.read()
print(contents)

如果有帮助,请按箭头按钮接受答案。