Cara Mengirim Perintah ke CMD Menggunakan Python

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