国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

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

2020-02-23 01:21:32
字體:
來源:轉載
供稿:網友

 writelines()方法寫入字符串序列到文件。該序列可以是任何可迭代的對象產生字符串,字符串為一般列表。沒有返回值。
語法

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

fileObject.writelines( sequence )

參數

    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


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 上饶县| 绥中县| 夏津县| 高台县| 南陵县| 西藏| 城市| 永川市| 健康| 皋兰县| 龙南县| 台前县| 奉化市| 大名县| 桑日县| 桂阳县| 讷河市| 镇康县| 博爱县| 罗山县| 离岛区| 衡南县| 珲春市| 沐川县| 锡林郭勒盟| 秀山| 彭阳县| 革吉县| 平泉县| 固阳县| 集安市| 南宁市| 镇巴县| 宝坻区| 红河县| 克拉玛依市| 凯里市| 札达县| 普定县| 巴马| 喀什市|