Python之write与writelines区别
Posted yk_cjy2020
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之write与writelines区别相关的知识,希望对你有一定的参考价值。
一、传入的参数类型要求不同:
1、 file.write(str)需要传入一个字符串做为参数,否则会报错。
write( "字符串")
1 with open(‘20200222.txt‘,‘w‘) as fo: 2 fo.write([‘a‘,‘b‘,‘c‘])
#错误提示:TypeError: write() argument must be str, not list
2、 file.writelines(sequence)可以有两种:字符串和字符序列,传入字符序列时,如果需要换行,则每个序列元素末尾需要有“ ”换行符才能达到所要输出的格式要求。
注意 :writelines必须传入的是字符序列,不能是数字序列
writelines( "字符串" ) writelines( "字符序列" )
1 list1 = [‘a‘,‘1‘,3,4,5] 2 with open(‘20200222.txt‘,‘w‘) as fo: 3 fo.writelines(list1)
#错误提示:TypeError: write() argument must be str, not int
1 list1 = [‘a‘,‘1‘,‘3‘,‘4‘,‘5‘] 2 with open(‘20200222.txt‘,‘w‘) as fo: 3 fo.writelines(list1) #正确传入参数!
1 with open(‘20200222.txt‘,‘w‘) as fo:
2 fo.writelines(‘今天是2020年2月22日星期六, ‘) #注意,有个换行符,需要显式的加入换行符。
3 fo.writelines(‘我第一次在博客园上写博客!‘)
输出:
今天是2020年2月22日星期六,
我第一次在博客园上写博客!
以上是关于Python之write与writelines区别的主要内容,如果未能解决你的问题,请参考以下文章
python read() readline() readlines() write() writelines()方法总结与区别
C#里面Console.Write与Console.WriteLine有啥区别????