Код Python для открытия командной строки Windows

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