时间:2021-05-22
writelines()方法写入字符串序列到文件。该序列可以是任何可迭代的对象产生字符串,字符串为一般列表。没有返回值。
语法
以下是writelines()方法的语法:
fileObject.writelines( sequence )参数
返回值
此方法不返回任何值。
例子
下面的例子显示writelines()方法的使用。
#!/usr/bin/python'# Open a file in witre modefo = 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 lineseq = ["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 filefo.close()当我们运行上面的程序,它会产生以下结果:
Name of the file: foo.txtLine No 0 - This is 1st lineLine No 1 - This is 2nd lineLine No 2 - This is 3rd lineLine No 3 - This is 4th lineLine No 4 - This is 5th lineLine No 5 - This is 6th lineLine No 6 - This is 7th line声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Android中onSaveInstanceState()使用方法详解覆盖onSaveInstanceState方法,并在onCreate中检测savedIns
python系统调用的实例详解本文将通过两种方法对python系统调用进行讲解,包括python使用CreateProcess函数运行其他程序和ctypes模块
Python中格式化format()方法详解Python中格式化输出字符串使用format()函数,字符串即类,可以使用方法;Python是完全面向对象的语言,
详解python中executemany和序列的使用方法一代码importsqlite3persons=[("Jim","Green"),("Hu","jie"
本文实例讲述了python文件写入的用法。分享给大家供大家参考。具体分析如下:Python中wirte()方法把字符串写入文件,writelines()方法可以