Python3基础之(十 六)读写文件2

版权声明:本文为博主原创文章,转载请注明出处! https://blog.csdn.net/PoGeN1/article/details/84137790

我们先保存一个已经有3行文字的 “my file.txt” 文件, 文件的内容如下:

This is my first test. 
This is the second line.
This the third

然后使用添加文字的方式给这个文件添加一行 “This is appended file.”, 并将这行文字储存在 append_file 里,注意\n的适用性,注意a是append增加的意思

append_text='\nThis is appended file.'  # 为这行文字提前空行 "\n"
my_file=open('my file.txt','a')   # 'a'=append 以增加内容的形式打开
my_file.write(append_text)
my_file.close()

my_file文件里的内容为:

This is my first test.
This is the second line.
This the third line.
This is appended file.

#运行后再去打开文件,会发现会增加一行代码中定义的字符串。

总结

1、掌握 append 的用法 :open('my file.txt','a') 打开类型为 a ,a 即表示 append
2、可以思考,如果用 w 形式打开,运行后会发生什么呢?
回答:以w方式打开,会把原来的东西全都覆盖掉

猜你喜欢

转载自blog.csdn.net/PoGeN1/article/details/84137790