标签: python
以下脚本创建一个名为“python test_script.py”的进程。
import os import subprocess subprocess.call(["python", "test_script.py", "a"], shell=False)
有没有办法通过Python创建一个名为“python test_script.py -n 1234”的进程。