import os
os.system("command..")
import os
cmd = 'your command here'
os.system(cmd)
import subprocess
subprocess.call("command1")
subprocess.call(["command1", "arg1", "arg2"])
python [-bBdEiOQsRStuUvVWxX3?] [-c command | -m module-name | script | - ] [args]