日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

python readlines慢_为什么readline()比Python中的readlines()慢得多?

發布時間:2024/2/28 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python readlines慢_为什么readline()比Python中的readlines()慢得多? 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

在一次采訪中,一位采訪者問我為什么readline()比Python中的readlines()慢得多?

我回答說readlines()需要多次閱讀,這需要更多的支出.

我不知道我的答案是否正確.

如果我的答案是正確的,那么支出是多少?

謝謝!

PS:我知道readline()和readlines()之間的區別!

readlines()一次讀取整個文件,readline()只能讀取一行.

我希望有人能告訴我一些關于磁盤IO文件的知識.

解決方法:

f.readline() reads a single line from the file; a newline character

(\n) is left at the end of the string, and is only omitted on the last

line of the file if the file doesn’t end in a newline.

Read one entire line from the file. A trailing newline character is

kept in the string (but may be absent when a file ends with an

incomplete line). If the size argument is present and

non-negative, it is a maximum byte count (including the trailing

newline) and an incomplete line may be returned. When size is not 0,

an empty string is returned only when EOF is encountered immediately.

If you want to read all the lines of a file in a list you can also use

list(f) or f.readlines().

Read until EOF using readline() and return a list containing the lines

thus read. If the optional sizehint argument is present, instead of

reading up to EOF, whole lines totalling approximately sizehint bytes

(possibly after rounding up to an internal buffer size) are read.

Objects implementing a file-like interface may choose to ignore

sizehint if it cannot be implemented, or cannot be implemented

efficiently.

因此readlines使用readline函數“多次讀取”文件.其他答案可以更詳細地回答每個答案的表現.

標簽:python

總結

以上是生活随笔為你收集整理的python readlines慢_为什么readline()比Python中的readlines()慢得多?的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。