帶有示例的Python File readline()方法

文件readline()方法 (File readline() Method)

readline() method is an inbuilt method in Python, it is used to get one line from the file, the method is called with this object (current file stream/IO object) and returns one line from the file, we can also specify the total number of bytes to read from the line.

readline()方法是Python中的一種內置方法,用于從文件中獲取一行,該方法與此對象(當前文件流/ IO對象)一起調用,并從文件中返回一行,我們還可以指定從行讀取的總字節數。

Syntax:

句法:

    file_object.readline(bytes)

Parameter(s):

參數:

  • bytes – It is an optional parameter and it can be used to specify the total number of bytes to read from the file. It's default value is -1 that specifies the whole line.

    bytes –這是一個可選參數,可用于指定要從文件讀取的總字節數。 它的默認值為-1,用于指定整行。

Return value:

返回值:

The return type of this method is <class 'str'>, it returns the string.

該方法的返回類型為<class'str'> ,它返回字符串。

Example 1:

范例1:

# Python File readline() Method with Example
# creating a file
myfile1 = open("hello1.txt", "w")
# writing content in the file
myfile1.write("Shivang, 21, Indore\n")
myfile1.write("Pankaj, 27, Mumbai\n")
myfile1.write("Rambha, 16, Heaven\n")
# closing the file
myfile1.close()
# reading the file (opening file in 'r' mode)
myfile1 = open("hello1.txt","r")
# reading and printing the file's content  
# line by line
print("file's content (using readline() method)...")
print("line1: ", myfile1.readline())
print("line2: ", myfile1.readline())
print("line3: ", myfile1.readline())
# reading and printing the file's content
# all at once using read() method
# seeking the file position at 0th position
myfile1.seek(0)
print("file's content (using read() method)...")
print(myfile1.read())
# closing the file
myfile1.close()

Output

輸出量

file's content (using readline() method)...
line1:  Shivang, 21, Indore
line2:  Pankaj, 27, Mumbai
line3:  Rambha, 16, Heaven
file's content (using read() method)...
Shivang, 21, Indore
Pankaj, 27, Mumbai
Rambha, 16, Heaven

Example 2:

范例2:

# Python File readline() Method with Example
# creating a file
myfile1 = open("hello1.txt", "w")
# writing content in the file
myfile1.write("Shivang, 21, Indore\n")
myfile1.write("Pankaj, 27, Mumbai\n")
myfile1.write("Rambha, 16, Heaven\n")
# closing the file
myfile1.close()
# reading the file (opening file in 'r' mode)
myfile1 = open("hello1.txt","r")
# reading and printing the file's content  
# line by line
print("file's content (using readline() method)...")
# reads whole line
print("line1: ", myfile1.readline(-1))
# reads 5 bytes
print("line2: ", myfile1.readline(5))
# reads next 10 bytes
print("line3: ", myfile1.readline(10))
# closing the file
myfile1.close()

Output

輸出量

file's content (using readline() method)...
line1:  Shivang, 21, Indore
line2:  Panka
line3:  j, 27, Mum

翻譯自: https://www.includehelp.com/python/file-readline-method-with-example.aspx

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/541176.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/541176.shtml
英文地址,請注明出處:http://en.pswp.cn/news/541176.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

++代碼實現 模糊綜合算法_干貨 | 十大經典排序算法最強總結(內含代碼實現)...

一、算法分類十種常見排序算法可以分為兩大類&#xff1a;比較類排序&#xff1a;通過比較來決定元素間的相對次序&#xff0c;由于其時間復雜度不能突破O(nlogn)&#xff0c;因此也稱為非線性時間比較類排序。非比較類排序&#xff1a;不通過比較來決定元素間的相對次序&#…

如何恢復osd的auth表中的權限

2019獨角獸企業重金招聘Python工程師標準>>> 原因&#xff1a;當你一不小心刪掉了osd的auth信息時&#xff0c;重啟osd服務&#xff0c;此時ceph -s查看發現osd down 如&#xff1a; [rootceph ~]# ceph osd tree ID WEIGHT TYPE NAME UP/DOWN REWEIGHT PRIM…

nginx服務器配置安全維護,Nginx服務器相關的一些安全配置建議

這篇文章主要介紹了Nginx服務器相關的一些安全配置建議,共計總結了十個小點,需要的朋友可以參考下Nginx是當今最流行的Web服務器之一。它為世界上7%的web流量提供服務而且正在以驚人的速度增長。它是個讓人驚奇的服務器&#xff0c;我愿意部署它。下面是一個常見安全陷阱和解決…

帶有示例的Python date strftime()方法

Python date.strftime()方法 (Python date.strftime() Method) date.strftime() method is used to manipulate objects of date class of module datetime. date.strftime()方法用于操作模塊datetime的日期類的對象。 It takes an instance of the class and returns a stri…

python 發送郵件connect none_使用python向IP地址發送郵件

所以我嘗試通過python腳本發送郵件。使用通常的接收者地址格式可以正常工作”userdomain.tld". 當我現在嘗試使用帶有接收者“user[IP Address]的腳本時&#xff0c;我所有的調試輸出看起來都很好&#xff0c;sendmail方法也可以工作&#xff0c;但是郵件始終沒有收到。我…

老男孩IT教育38期面授班 學員邢偉的決心書

大家好我叫邢偉,今年22歲&#xff0c;上一份工作是做媒體推廣的&#xff0c;拿完獎金飯補全勤獎月薪大概4K左右&#xff0c;在北京生活感覺力不從心現在參加老男孩IT教育linux運維38期&#xff0c;在接下來的學習中&#xff0c;我的目標是畢業后達到月薪12K在接下來的學習中早上…

PS打開PSD文檔服務器未響應,ps打不開psd文件的解決方法

很多人用ps做作品的時候&#xff0c;經常遇到psd文件打不開的問題&#xff0c;最常見的有三種原因&#xff0c;有兩種可以設置解決&#xff0c;另一種是文件損壞&#xff0c;不可恢復。下面是學習小編給大家整理的有關介紹ps打不開psd文件的解決方法&#xff0c;希望對大家有幫…

strictmath_Java StrictMath cbrt()方法與示例

strictmathStrictMath類cbrt()方法 (StrictMath Class cbrt() method) cbrt() method is available in java.lang package. cbrt()方法在java.lang包中可用。 cbrt() method is used to find the cube root of the given parameter in the method. Here, cbrt stands for cube …

模塊---常用模塊

import osprint(os.getcwd()) #得到當前目錄#os.chmod("/usr/local",7) #給文件或者文件夾加權限&#xff0c;7為最高權限print(os.chdir("../")) #更改當前目錄print(os.curdir) #當前目錄print(os.pardir) #父目錄print(os.mkdir("test1")) #創…

excel添加列下拉框票價_excel表格下拉表格添加數據-excel2017表格中怎么制作下拉菜單列表框...

在Excel表中&#xff0c;如何將增加下拉菜單的選項&#xff1f;excel中的下拉菜單選項&#xff0c;就是篩選的功能&#xff0c;具體操作如下&#xff1a;1.首先選中a、b兩列數據&#xff0c;在“開始”選項卡上選擇“篩選”&#xff1b;2.這樣就在excel表中添加了下拉菜單選項。…

ajax實現兩個aspx跳轉,請問ajax執行成功后可以跳轉到另一個頁面嗎?

一只名叫tom的貓通過ajax讀取到寫好的jsp&#xff0c;另一個jsp可以放framse或者層都可以&#xff0c;顯示就行了123456789$.ajax({ type: "POST", //用post方式傳輸 dataType: "html", //數據格式&#xff1a;json…

Android橫豎屏切換View設置不同尺寸或等比例縮放的自定義View的onMeasure解決方案(2)...

Android橫豎屏切換View設置不同尺寸或等比例縮放的自定義View的onMeasure解決方案&#xff08;2&#xff09;附錄文章1以xml布局文件方式實現了一個view在橫豎屏切換時候的大小尺寸縮放&#xff0c;實現這種需求&#xff0c;也可以使用自定義View的onMeasure方法實現。比如&…

java中的push方法_Java ArrayDeque push()方法與示例

java中的push方法ArrayDeque類push()方法 (ArrayDeque Class push() method) push() Method is available in java.lang package. push()方法在java.lang包中可用。 push() Method is used to push an element onto the stack denoted by this deque. push()方法用于將元素壓入…

7段均衡器最佳參數_十段均衡器的設置和參數

本帖最后由 GTXarrow 于 2015-2-2 14:53 編輯EQ的基本定義:EQ是Equalizer的縮寫&#xff0c;大陸稱為均衡器&#xff0c;港臺稱為等化器。作用是調整各頻段信號的增益值。10段均衡器表示有10個可調節節點。節點越多&#xff0c;便可以調節出更精確的曲線&#xff0c;同時難度更…

本地 服務器 文件傳輸,本地服務器文件傳輸

本地服務器文件傳輸 內容精選換一換CDM支持周期性自動將新增文件上傳到OBS&#xff0c;不需要寫代碼&#xff0c;也不需要用戶頻繁手動上傳即可使用OBS的海量存儲能力進行文件備份。這里以CDM周期性備份FTP的文件到OBS為例進行介紹。例如&#xff1a;FTP服務器的to_obs_test目錄…

上市公司行情查詢站點

http://stock.finance.sina.com.cn/usstock/quotes/BABA.html

java peek方法_Java ArrayDeque peek()方法與示例

java peek方法ArrayDeque類peek()方法 (ArrayDeque Class peek() method) peek() Method is available in java.lang package. peek()方法在java.lang包中可用。 peek() Method is used to return the head element of the queue denoted by this deque but without removing t…

中怎么撤回消息_微信消息撤回也能看到,這個開源神器牛x!語音、圖片、文字都支持!...

1.前言 微信在2014年的時候&#xff0c;發布的v5.3.1 版本中推出了消息撤回功能&#xff0c;用戶可以選擇撤回 2 分鐘內發送的最后一條信息。現在很多即時通訊的軟件都有撤回這個功能。騰訊為了照顧手殘黨&#xff0c;在微信和QQ中都加入了【消息撤回】的功能。但是這個功能對于…

ntce服務器不穩定,當心!你的教師資格證成績失效了!| 服務

原標題&#xff1a;當心&#xff01;你的教師資格證成績失效了&#xff01;| 服務湖南的小王同學資格證筆試考了兩次才全部通過&#xff0c;想著好好歇歇&#xff0c;結果就誤了面試報名&#xff0c;等到第三年面試報名時才發現有一科筆試成績已經過期了......天吶&#xff0c;…

java中get接口示例_Java即時類| 帶示例的get()方法

java中get接口示例即時類的get()方法 (Instant Class get() method) get() method is available in java.time package. get()方法在java.time包中可用。 get() method is used to get the value of the given field from this Instant object. get()方法用于從此Instant對象獲…