subprocess模塊是Python中用于創建和管理子進程的模塊。它提供了一種簡單的方法來執行外部命令以及與其進行交互。以下是subprocess模塊的一些常用方法和用法示例。
import subprocess
result = subprocess.run(['ls', '-l'], capture_output=True, text=True)
print(result.stdout)
import subprocess
process = subprocess.Popen(['ls', '-l'], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
output, error = process.communicate()
print(output)
import subprocess
output = subprocess.check_output(['ls', '-l'], text=True)
print(output)
import subprocess
process = subprocess.Popen(['grep', 'hello'], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
output, error = process.communicate(input='hello world')
print(output)
以上是subprocess模塊的一些常用方法和用法示例。根據具體的需求,你可以選擇適合的方法來執行和管理子進程。