Portable Process Control (1 of 3)
Standard Python functions all work
- Just often not quite how we would like!
os.system()
import os
os.system(“notepad C:\\autoexec.bat”)
Problems
- Creates a new console window when run from a GUI.
- Waits for process to terminate.