Code python pour ouvrir l'invite de commande Windows

import os
def mycmd():
    os.system('cmd /c "ipconfig"')
mycmd()
Prince Prakash