Answers for "start process python"

0

start process python

import subprocess
subprocess.call(["C:\\temp\\calc.exe"])
or

import os
os.system('"C:/Windows/System32/notepad.exe"')
Posted by: Guest on April-04-2022

Code answers related to "start process python"

Python Answers by Framework

Browse Popular Code Answers by Language