国产探花免费观看_亚洲丰满少妇自慰呻吟_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


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 嘉兴市| 南郑县| 哈尔滨市| 平果县| 汉寿县| 湾仔区| 双鸭山市| 建瓯市| 威宁| 西畴县| 青田县| 安顺市| 天门市| 铜山县| 汤原县| 河津市| 云和县| 海林市| 福清市| 望奎县| 崇义县| 潮州市| 辉县市| 阳城县| 洱源县| 济南市| 榆中县| 南丰县| 肥乡县| 若尔盖县| 博客| 霍邱县| 阿克苏市| 白银市| 建宁县| 芒康县| 通化县| 石狮市| 鲁山县| 黑水县| 昌邑市|