Answers for "how to execute a command in cmd python using os"

1

python write to command prompt

import os
os.system("start /B start cmd.exe @cmd /k {command}")
Posted by: Guest on November-16-2020
9

how to run cmd line commands in python

import os

os.system("javac lolol.java")# or something....
Posted by: Guest on June-26-2020

Code answers related to "how to execute a command in cmd python using os"

Python Answers by Framework

Browse Popular Code Answers by Language