在Python中,可以使用subprocess
模塊來獲取控制臺輸出內(nèi)容。下面是一個示例代碼:
import subprocess
# 執(zhí)行命令并獲取輸出內(nèi)容
result = subprocess.run(['ls', '-l'], capture_output=True, text=True)
# 輸出控制臺內(nèi)容
print(result.stdout)
在上面的示例代碼中,subprocess.run
函數(shù)用于執(zhí)行命令ls -l
,并使用capture_output=True
參數(shù)來捕獲命令的輸出內(nèi)容。然后通過result.stdout
來獲取控制臺輸出內(nèi)容并打印出來。