os.system()is, although not obsolete, considered by many to be superfluous. Everything that can be done with it can be done with subprocess.
If you do not like that your program and another process are running at the same time (I think you mean asynchronous), you could do
from subprocess import Popen, PIPE
sp = Popen(my_cmd.split(), stdin=PIPE)
sp.stdin.write('\n')
sp.wait()
.wait() "".