详解详解Python中writelines()方法的使用


Posted in Python onMay 25, 2015

 writelines()方法写入字符串序列到文件。该序列可以是任何可迭代的对象产生字符串,字符串为一般列表。没有返回值。
语法

以下是writelines()方法的语法:

fileObject.writelines( sequence )

参数

  •     sequence -- 这是字符串的序列。

返回值

此方法不返回任何值。
例子

下面的例子显示writelines()方法的使用。

#!/usr/bin/python'

# Open a file in witre mode
fo = open("foo.txt", "rw+")
print "Name of the file: ", fo.name

# Assuming file has following 5 lines
# This is 1st line
# This is 2nd line
# This is 3rd line
# This is 4th line
# This is 5th line

seq = ["This is 6th line\n", "This is 7th line"]
# Write sequence of lines at the end of the file.
fo.seek(0, 2)
line = fo.writelines( seq )

# Now read complete file from beginning.
fo.seek(0,0)
for index in range(7):
  line = fo.next()
  print "Line No %d - %s" % (index, line)

# Close opend file
fo.close()

当我们运行上面的程序,它会产生以下结果:

Name of the file: foo.txt
Line No 0 - This is 1st line

Line No 1 - This is 2nd line

Line No 2 - This is 3rd line

Line No 3 - This is 4th line

Line No 4 - This is 5th line

Line No 5 - This is 6th line

Line No 6 - This is 7th line

Python 相关文章推荐
一个简单的python程序实例(通讯录)
Nov 29 Python
python基础教程之面向对象的一些概念
Aug 29 Python
Python函数嵌套实例
Sep 23 Python
pygame学习笔记(5):游戏精灵
Apr 15 Python
从局部变量和全局变量开始全面解析Python中变量的作用域
Jun 16 Python
Python 12306抢火车票脚本 Python京东抢手机脚本
Feb 06 Python
Python判断是否json是否包含一个key的方法
Dec 31 Python
使用Python制作表情包实现换脸功能
Jul 19 Python
Python 中pandas索引切片读取数据缺失数据处理问题
Oct 09 Python
Python代码中如何读取键盘录入的值
May 27 Python
Keras自动下载的数据集/模型存放位置介绍
Jun 19 Python
Python xlwings插入Excel图片的实现方法
Feb 26 Python
Python中操作文件之write()方法的使用教程
May 25 #Python
在Python中操作文件之truncate()方法的使用教程
May 25 #Python
Python中tell()方法的使用详解
May 24 #Python
在Python中操作文件之seek()方法的使用教程
May 24 #Python
简单介绍Python中的readline()方法的使用
May 24 #Python
在Python中操作文件之read()方法的使用教程
May 24 #Python
在Python中使用next()方法操作文件的教程
May 24 #Python
You might like
PHP类的使用 实例代码讲解
2009/12/28 PHP
PHP扩展Memcache分布式部署方案
2015/12/06 PHP
PHP实现163邮箱自动发送邮件
2016/03/29 PHP
微信开发之获取JSAPI TICKET
2017/07/07 PHP
tp5 实现列表数据根据状态排序
2019/10/18 PHP
求解开jscript.encode代码的asp函数
2007/02/28 Javascript
比较详细的关于javascript 解析json的代码
2009/12/16 Javascript
跟我一起学写jQuery插件开发方法(附完整实例及下载)
2010/04/01 Javascript
myFocus slide3D v1.1.0 使用方法与下载
2011/01/12 Javascript
jquery监听div内容的变化具体实现思路
2013/11/04 Javascript
JavaScript跨浏览器获取页面中相同class节点的方法
2015/03/03 Javascript
JS实现从连接中获取youtube的key实例
2015/07/02 Javascript
prototype框架中美元符号$用法分析
2016/01/22 Javascript
js html5 css俄罗斯方块游戏再现
2016/10/17 Javascript
将鼠标焦点定位到文本框最后(代码分享)
2017/01/11 Javascript
Bootstrap组件之下拉菜单,多级菜单及按钮布局方法实例
2017/05/25 Javascript
详解webpack 如何集成第三方js库
2017/06/29 Javascript
一份超级详细的Vue-cli3.0使用教程【推荐】
2018/11/15 Javascript
highCharts提示框中显示当前时间的方法
2019/01/18 Javascript
vue数据初始化initState的实例详解
2019/04/11 Javascript
JS实现百度搜索框关键字推荐
2020/02/17 Javascript
[06:16]第十四期-国士无双绝地翻盘之撼地神牛
2014/06/24 DOTA
Python使用dis模块把Python反编译为字节码的用法详解
2016/06/14 Python
详解python3中tkinter知识点
2018/06/21 Python
python中Lambda表达式详解
2019/11/20 Python
Python配置pip国内镜像源的实现
2020/08/20 Python
基于canvas使用贝塞尔曲线平滑拟合折线段的方法
2018/01/10 HTML / CSS
北卡罗来纳州豪华家具和家居装饰店:Carolina Rustica
2018/10/30 全球购物
微软巴西官方网站:Microsoft Brasil
2019/09/26 全球购物
Lowe’s加拿大:家居装修、翻新和五金店
2019/12/06 全球购物
幼儿园教师备课制度
2014/01/12 职场文书
初中校园广播稿
2014/02/02 职场文书
大学优秀班集体申报材料
2014/05/23 职场文书
幼儿园中班教师个人工作总结
2015/02/06 职场文书
宝葫芦的秘密观后感
2015/06/11 职场文书
2016年教师节慰问信
2015/12/01 职场文书