亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中file.read()方法的使用示例

發布時間:2020-12-08 09:16:06 來源:億速云 閱讀:1765 作者:小新 欄目:編程語言

小編給大家分享一下Python中file.read()方法的使用示例,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

在計算機中,文件包括了文檔、圖片、視頻、程序組件等,每個類型的文件都有不同的作用或功用。例如一個程序通常由主程序、動態庫、配置文件等組成,這些也是文件,起到支持程序運行的作用。想要使用文件,第一個操作就是打開讀取文件,那么在python如何讀取文件呢?其實使用python file read()方法。

描述

read()方法是Python的文件方法,用于讀取文件中的內容,并返回文件內容的字符串。

語法

file.read(size)

返回值

讀取文件,返回字符串類型的值。

 使用示例

1. size省略,一次性讀完整個文件

待讀取的文件 demo.txt:

2019

python代碼:

data = open("demo.txt", "r").read()
print(data)

執行結果:

2019

2. 指定字節數讀取文件

待讀取的文件:demo.txt

A thread is a basic unit of CPU execution. It must depend on the process surviving. A thread is an execution context, which is what a CPU needs to execute
A list of instructions. In Python, multithreading takes longer.

假設我們只希望讀取30字節的數據:

data = open("demo.txt", "r").read(30)
print(data)

執行結果如下:

A thread is a basic unit of CP

注意事項:

1.  size為負時

當size值為負數時read()方法不會報錯,此時read()方法會讀完整個文件。

待讀取的文件:demo.txt

A thread is a basic unit of CPU execution. It must depend on the process surviving. A thread is an execution context, which is what a CPU needs to execute
A list of instructions. In Python, multithreading takes longer.

python腳本:

data = open("demo.txt", "r").read(-1)
print(data)

執行結果:

A thread is a basic unit of CPU execution. It must depend on the process surviving. A thread is an execution context, which is what a CPU needs to execute
A list of instructions. In Python, multithreading takes longer.

2. size為0時

當size等于0時,read方法返回一個空串。

data = open("demo.txt", "r").read(0)
print(data)
print(type(data))
print(len(data))

執行結果:

 
<class 'str'>
0

為何要使用Size?

當文件過大,內存不夠一次性讀取整個文件時,就需要分批讀取文件。合理使用size可以妥善處理文件大于內存的場景。

看完了這篇文章,相信你對Python中file.read()方法的使用示例有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

隆昌县| 江西省| 白银市| 禹州市| 田林县| 绿春县| 资中县| 高密市| 诸城市| 北宁市| 塔城市| 延长县| 邹城市| 翼城县| 柯坪县| 永城市| 象山县| 阳曲县| 固始县| 秦安县| 漠河县| 北碚区| 若羌县| 淮安市| 新宁县| 卓尼县| 五寨县| 安丘市| 原阳县| 宜章县| 商河县| 岑溪市| 如东县| 乐东| 海晏县| 靖远县| 台南县| 通海县| 永寿县| 武义县| 庆阳市|