import subprocess calcProc = subprocess.Popen('c:\\Windows\\System32\\calc.exe') subprocess.Popen(['C:\\Windows\\notepad.exe', 'C:\\hello.txt']) 带有参数 subprocess.Popen(['start', 'alarm.wav'], shell=True)
本文共 252 字,大约阅读时间需要 1 分钟。
import subprocess calcProc = subprocess.Popen('c:\\Windows\\System32\\calc.exe') subprocess.Popen(['C:\\Windows\\notepad.exe', 'C:\\hello.txt']) 带有参数 subprocess.Popen(['start', 'alarm.wav'], shell=True)
转载于:https://www.cnblogs.com/vito13/p/7832092.html