10-1 Python 学习笔记:在文本编辑器中新建一个文件,写几句话来总结一下你至
此学到的 Python 知识,其中每一行都以“In Python you can”打头。将这个文件命名为
learning_python.txt,并将其存储到为完成本章练习而编写的程序所在的目录中。编写一
个程序,它读取这个文件,并将你所写的内容打印三次:第一次打印时读取整个文件;
第二次打印时遍历文件对象;第三次打印时将各行存储在一个列表中,再在 with 代码
块外打印它们。
#coding:utf-8
filename='learning_python.txt'
with open(filename) as file_object:
#第一次打印读取整个文件
read=file_object.read()
print(read)
#第二次打印遍历文件对象
with open(filename) as file_object:
for line in file_object:
print(line)
with open(filename) as file_object:
#第三次打印将各行存储在一个列表中
lines=file_object.readlines()
for line in lines:
print(line.rstrip())
之前我就open一次,然后运行三种方法,结果只打开了一次。