首頁 >後端開發 >Python教學 >如何在 Python 中將 shell 命令輸出捕獲為字串?

如何在 Python 中將 shell 命令輸出捕獲為字串?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-12-23 06:36:34655瀏覽

How can I capture shell command output as a string in Python?

在 Python 中擷取指令輸出

問題: 執行 shell 指令並將其輸出擷取為字串,無論成功或失敗。

解:

中現代版本的Python(3.5 或更高版本),使用帶有stdout=subprocess.PIPE 標誌的subprocess.run 函數:

import subprocess

result = subprocess.run(['ls', '-l'], stdout=subprocess.PIPE)
output = result.stdout.decode('utf-8')

在舊版的Python (3-3.4) 中,使用subprocess.check_output function:

import subprocess

output = subprocess.check_output(['ls', '-l'])

對於涉及命令輸入或錯誤處理的更複雜的場景,請使用 subprocess.Popen 類別與 communications方法:

import subprocess

p = subprocess.Popen(['ls', '-a'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output, error = p.communicate()

以上是如何在 Python 中將 shell 命令輸出捕獲為字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn