File函数 中的 file.writelines(sequen

首页 / Python2入门教程 / File函数 中的 file.writelines(sequen

Python file方法writlines()将字符串序列写入文件。序列可以是产生字符串的任何可迭代对象,通常是字符串列表。没有返回值。

file.writelines - 语法

下面是writlines()方法-的语法

fileObject.writelines( sequence )
  • sequence  -  这是字符串的序列。

file.writelines - 示例

以下示例显示writlines()方法的用法。

This is 1st line
This is 2nd line
This is 3rd line
This is 4th line
This is 5th line
#!/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

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

快速上手Kotlin开发 -〔张涛〕

邱岳的产品实战 -〔邱岳〕

张汉东的Rust实战课 -〔张汉东〕

物联网开发实战 -〔郭朝斌〕

Spark性能调优实战 -〔吴磊〕

徐昊 · TDD项目实战70讲 -〔徐昊〕

快速上手C++数据结构与算法 -〔王健伟〕

Python实战 · 从0到1搭建直播视频平台 -〔Barry〕

结构思考力 · 透过结构看思考 -〔李忠秋〕

好记忆不如烂笔头。留下您的足迹吧 :)