python换行写入文件

直接使用writelines()函数并没有换行写入

#encoding=utf-8
f=open("test.txt","w+")
f.writelines("hello")
f.writelines("world")
f.writelines("yhk")
f.close()


在写入字符串后边加"\n"实现了换行输入。

#encoding=utf-8
f=open("test.txt","w+")
f.writelines("hello"+"\n")
f.writelines("world"+"\n")
f.writelines("yhk"+"\n")
f.close()


注意:使用“”w+“”模式打开文件,每次写入的时候会覆盖之前的内容。















你可能感兴趣的:(python)