So senden Sie mit Python einen Befehl an CMD

import os
# this command will be executed in cmd eg.echo hi
os.system("echo hi")
#output
#hi
Poor Peccary