先看一个简单的例子:将变量写入txt文本中
1
2
3
4
|
f = open ( 'e:/test.txt' , 'w' )
f.write( 'hello world!' )
out[ 3 ]: 12
f.close()
|
结果如图:
那么如何将变量按行写入呢?
在'w'写入模式下,当我们下次写入变量时,会覆盖原本txt文件的内容,这肯定不是我们想要的。txt有一个追加模式'a',可以实现多次写入:
1
2
3
4
|
f = open ( 'e:/test.txt' , 'a' )
f.write( 'the second writing...' )
out[ 6 ]: 21
f.close()
|
结果如图:
如果要按行写入,我们只需要再字符串开头或结尾添加换行符'\n'即可:
1
2
3
4
|
f = open ( 'e:/test.txt' , 'a' )
f.write( '\nthe third writing...' )
out[ 9 ]: 21
f.close()
|
结果如图:
如果想要将多个变量同时写入一行中,可以使用writelines()函数:
1
2
3
|
f = open ( 'e:/test.txt' , 'a' )
f.writelines([ '\nthe fourth writing...' , ',' , 'good' ])
f.close()
|
结果如图:
以上这篇python中将变量按行写入txt文本中的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/flying_sfeng/article/details/75009741