Possible Duplicate:
How to call external command in Python
I'm writing a Python script on a windows machine. I need to launch another application "OtherApp.exe". What is the most suitable way to do so?
Till now I've been looking at os.system()
or os.execl()
and they don't quite look appropriate (I don't even know if the latter will work in windows at all).