Python 文件writelines() 方法和处理双层列表
Posted ling_1583651986
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 文件writelines() 方法和处理双层列表相关的知识,希望对你有一定的参考价值。
概述
writelines() 方法用于向文件中写入一序列的字符串。
这一序列字符串可以是由迭代对象产生的,如一个字符串列表。
换行需要制定换行符 \\n。
语法
writelines() 方法语法如下:
fileObject.writelines( [ str ])
data = [\'a\',\'b\',\'c\'] with open("data.txt","w") as f: f.writelines(data)
输出:
对于双层列表中的数据
data = [ [\'a\',\'b\',\'c\'],[\'a\',\'b\',\'c\'],[\'a\',\'b\',\'c\']] with open("data.txt","w") as f: for i in data: # 对于双层列表中的数据 i = str(i).strip(\'[\').strip(\']\').replace(\',\', \'\').replace(\'\\\'\', \'\') + \'\\n\' # 将其中每一个列表规范化成字符串 f.write(i)
输出:
部分内容来自网络
以上是关于Python 文件writelines() 方法和处理双层列表的主要内容,如果未能解决你的问题,请参考以下文章
python read() readline() readlines() write() writelines()方法总结与区别