简单了解Python write writelines区别
(编辑:jimmy 日期: 2024/11/19 浏览:3 次 )
一、传入的参数类型要求不同:
1、 file.write(str)需要传入一个字符串做为参数,否则会报错。
write( "字符串")
with open('20200222.txt','w') as fo: fo.write([‘a','b','c']) #错误提示:TypeError: write() argument must be str, not list
2、 file.writelines(sequence)可以有两种:字符串和字符序列,传入字符序列时,如果需要换行,则每个序列元素末尾需要有“\n”换行符才能达到所要输出的格式要求。
注意 :writelines必须传入的是字符序列,不能是数字序列
writelines( "字符串" ) writelines( "字符序列" )
list1 = ['a','1',3,4,5] with open('20200222.txt','w') as fo: fo.writelines(list1) #错误提示:TypeError: write() argument must be str, not int
list1 = ['a','1','3','4','5'] with open('20200222.txt','w') as fo: fo.writelines(list1) #正确传入参数!
with open('20200222.txt','w') as fo: fo.writelines('今天是2020年2月22日星期六,\n') #注意,有个换行符,需要显式的加入换行符。 fo.writelines('我第一次在博客园上写博客!') 输出: 今天是2020年2月22日星期六, 我第一次在博客园上写博客!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇:python GUI库图形界面开发之pyinstaller打包python程序为exe安装文件