問題: 執行 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中文網其他相關文章!