讀取文字檔案的前N 行
問題:
問題:問題:
問題:head = [next(input_file) for _ in range(lines_number)]問題:
Python 中的實作:
Python 2 和3 都提供了讀取前N 行的有效方法使用with 語句的文字檔案:head = list(islice(input_file, lines_number))
with open(path_to_file) as input_file:<p><strong>print(head)</strong></p>或者,itertools.islice 提供了另一個解決方案:
from itertools import islice<p><strong>with open(path_to_file) as input_file:</strong></p>
以上是作業系統如何影響讀取文字檔案的前 N 行?的詳細內容。更多資訊請關注PHP中文網其他相關文章!