是的,Python 指令(也稱為命令)可以進行參數化
import subprocess
command = "echo Hello, {}!"
name = "World"
result = subprocess.run(command.format(name), shell=True, stdout=subprocess.PIPE, text=True)
print(result.stdout)
在這個例子中,我們使用 command.format(name)
對字符串進行參數化,然后將其傳遞給 subprocess.run()
函數。這樣,我們可以輕松地為命令提供不同的參數,而無需修改命令字符串本身。