You can call the command to launch applications or run commands in Python two ways.
With os.system(my_command)
import os os.system("c:\\windows\\notepad.exe")
Or with popen2.popen3(my_command)
import popen2 popen2.popen3("c:\\windows\\notepad.exe")
You can call the command to launch applications or run commands in Python two ways.
With os.system(my_command)
import os os.system("c:\\windows\\notepad.exe")
Or with popen2.popen3(my_command)
import popen2 popen2.popen3("c:\\windows\\notepad.exe")