溫馨提示×

python文本文件讀取的方法有哪些

小億
111
2024-05-27 19:48:15
欄目: 編程語言

Python中文本文件讀取的方法有以下幾種:

  1. 使用open函數(shù)打開文件并讀取內(nèi)容:
file = open('file.txt', 'r')
content = file.read()
file.close()
  1. 使用with語句自動關(guān)閉文件:
with open('file.txt', 'r') as file:
    content = file.read()
  1. 逐行讀取文件內(nèi)容:
with open('file.txt', 'r') as file:
    for line in file:
        print(line)
  1. 讀取指定行數(shù)的內(nèi)容:
with open('file.txt', 'r') as file:
    lines = file.readlines()[:5]  # 讀取前5行內(nèi)容
    for line in lines:
        print(line)
  1. 讀取文件中的單詞或者特定字符:
with open('file.txt', 'r') as file:
    content = file.read()
    words = content.split()  # 分割成單詞列表
    for word in words:
        print(word)

這些方法可以根據(jù)具體的需求選擇使用,可以滿足大部分的文件讀取操作。

0