You want the shell=True parameter to execute shell commands:
import subprocess subprocess.Popen("sleep 4s && echo right thar, right thar",shell=True); print 'i like it when you put it'
which gives:
I like it when you put it [4 seconds later] right thar, right thar
source share