how to get a python script to open a command prompt windows code example
Example: python code to open windows command prompt
import os
def mycmd():
os.system('cmd /c "ipconfig"')
mycmd()
import os
def mycmd():
os.system('cmd /c "ipconfig"')
mycmd()