码迷,mamicode.com
首页 > 编程语言 > 详细

Python 文件writelines() 方法和处理双层列表

时间:2019-08-17 12:52:15      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:src   open   规范   strip   mamicode   法语   col   int   ret   

概述

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() 方法和处理双层列表

标签:src   open   规范   strip   mamicode   法语   col   int   ret   

原文地址:https://www.cnblogs.com/monogem/p/11368033.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!