在 python 中讀取 .py 文件可以通過兩種方法:使用 open() 函數(shù)以只讀模式打開文件并使用 read() 方法讀取內(nèi)容。使用 pathlib 模塊的 path() 對象和 read_text() 方法讀取文件。
Python 文件讀取技巧:讀取 .py 文件步驟
簡介
在 Python 中,讀取文件是一個常見的操作。我們可以使用多種方法來讀取一個 .py 文件,并根據(jù)需要對其內(nèi)容進(jìn)行處理。
方法
1. 使用 open()
函數(shù)
with open('my_file.py', 'r') as f: data = f.read()
登錄后復(fù)制open()
函數(shù)打開 my_file.py
文件并返回一個文件對象。'r'
參數(shù)指定我們要以只讀模式打開文件。with
語句自動管理文件對象,并在塊執(zhí)行結(jié)束后關(guān)閉文件。
2. 使用 Pathlib
模塊
from pathlib import Path path = Path('my_file.py') data = path.read_text()
登錄后復(fù)制Pathlib
模塊提供了一種更面向?qū)ο蟮挠糜谖募僮鞯姆椒ā?code>Path() 構(gòu)造函數(shù)返回 Path()
對象。read_text()
方法讀取文件內(nèi)容并返回一個字符串。
實(shí)戰(zhàn)案例
假設(shè)我們有一個名為 my_file.py
的 Python 文件,其中包含以下代碼:
# my_file.py def my_function(): return "Hello, world!"
登錄后復(fù)制登錄后復(fù)制登錄后復(fù)制
示例:
使用 open()
函數(shù)讀取文件:
with open('my_file.py', 'r') as f: print(f.read())
登錄后復(fù)制
輸出:
# my_file.py def my_function(): return "Hello, world!"
登錄后復(fù)制登錄后復(fù)制登錄后復(fù)制
使用 Pathlib
模塊讀取文件:
from pathlib import Path path = Path('my_file.py') print(path.read_text())
登錄后復(fù)制
輸出:
# my_file.py def my_function(): return "Hello, world!"
登錄后復(fù)制登錄后復(fù)制登錄后復(fù)制