Answers for "open python terminal windows"

1

python code to open windows command prompt

import os
def mycmd():
    os.system('cmd /c "ipconfig"')
mycmd()
Posted by: Guest on September-04-2020
7

python how to run terminal command

#By Uku Loskit

import os
os.system("ls -l")
Posted by: Guest on January-09-2020

Code answers related to "open python terminal windows"

Python Answers by Framework

Browse Popular Code Answers by Language