Answers for "how to pass windows commands through python"

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
1

rum system commands python

import os
command = "ls"  #The command needs to be a string
os.system(command) #The command can also be passed as a string, instead of a variable
Posted by: Guest on May-11-2020

Code answers related to "how to pass windows commands through python"

Python Answers by Framework

Browse Popular Code Answers by Language